about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/kuserfeedback/default.nix
blob: bea9f86fc90dad21f093b56a5cdc85378a347700 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ lib
, mkDerivation
, fetchurl
, extra-cmake-modules
, qttools
}:
mkDerivation rec {
  pname = "kuserfeedback";
  version = "1.2.0";

  src = fetchurl {
    url = "mirror://kde/stable/${pname}/${pname}-${version}.tar.xz";
    hash = "sha256-dqrJIrFTJJsnRoCm9McsI47xTj3wS60Ay2QVixBj8mQ=";
  };

  nativeBuildInputs = [ extra-cmake-modules qttools ];

  meta = with lib; {
    license = [ licenses.mit ];
    maintainers = [ maintainers.k900 ];
    description = "Framework for collecting user feedback for apps via telemetry and surveys";
  };
}