mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
kuserfeedback: init at 1.2.0
Required for plasma-welcome, and maybe should be added to other things later.
This commit is contained in:
parent
984315e6e1
commit
131c8fa532
23
pkgs/development/libraries/kuserfeedback/default.nix
Normal file
23
pkgs/development/libraries/kuserfeedback/default.nix
Normal file
@ -0,0 +1,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";
|
||||
};
|
||||
}
|
@ -116,6 +116,8 @@ in (kdeFrameworks // plasmaMobileGear // plasma5 // plasma5.thirdParty // kdeGea
|
||||
|
||||
kquickimageedit = callPackage ../development/libraries/kquickimageedit { };
|
||||
|
||||
kuserfeedback = callPackage ../development/libraries/kuserfeedback { };
|
||||
|
||||
kweathercore = libsForQt5.callPackage ../development/libraries/kweathercore { };
|
||||
|
||||
ldutils = callPackage ../development/libraries/ldutils { };
|
||||
|
Loading…
Reference in New Issue
Block a user