Merge pull request #18003 from peterhoeg/kdf
kdiskfree: init at 16.08.0
This commit is contained in:
commit
76927783e0
2 changed files with 22 additions and 0 deletions
|
@ -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 {};
|
||||
|
|
21
pkgs/desktops/kde-5/applications/kdf.nix
Normal file
21
pkgs/desktops/kde-5/applications/kdf.nix
Normal 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" ]; }
|
Loading…
Reference in a new issue