Merge pull request #18003 from peterhoeg/kdf

kdiskfree: init at 16.08.0
This commit is contained in:
Frederik Rietdijk 2016-08-26 12:40:42 +02:00 committed by GitHub
commit 76927783e0
2 changed files with 22 additions and 0 deletions

View file

@ -47,6 +47,7 @@ let
kcolorchooser = callPackage ./kcolorchooser.nix {};
kdegraphics-thumbnailers = callPackage ./kdegraphics-thumbnailers.nix {};
kdenetwork-filesharing = callPackage ./kdenetwork-filesharing.nix {};
kdf = callPackage ./kdf.nix {};
kgpg = callPackage ./kgpg.nix { inherit (pkgs.kde4) kdepimlibs; };
khelpcenter = callPackage ./khelpcenter.nix {};
kio-extras = callPackage ./kio-extras.nix {};

View file

@ -0,0 +1,21 @@
{
kdeApp, lib, kdeWrapper,
ecm, kdoctools,
kcmutils
}:
let
unwrapped =
kdeApp {
name = "kdf";
meta = {
license = with lib.licenses; [ gpl2 ];
maintainers = [ lib.maintainers.peterhoeg ];
};
nativeBuildInputs = [ ecm kdoctools ];
propagatedBuildInputs = [
kcmutils
];
};
in
kdeWrapper unwrapped { targets = [ "bin/kdf" ]; }