kdiskfree: init at 16.08.0

This commit is contained in:
Peter Hoeg 2016-08-26 14:36:45 +08:00
parent 8512747ca5
commit e459abe612
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" ]; }