nixpkgs/pkgs/applications/kde/kdf.nix

25 lines
457 B
Nix
Raw Normal View History

2016-08-26 06:36:45 +00:00
{
mkDerivation, lib, kdeWrapper,
extra-cmake-modules, kdoctools,
2016-08-26 06:36:45 +00:00
kcmutils
}:
let
unwrapped =
mkDerivation {
2016-08-26 06:36:45 +00:00
name = "kdf";
meta = {
license = with lib.licenses; [ gpl2 ];
maintainers = [ lib.maintainers.peterhoeg ];
};
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
2016-08-26 06:36:45 +00:00
propagatedBuildInputs = [
kcmutils
];
};
in
kdeWrapper {
inherit unwrapped;
targets = [ "bin/kdf" ];
}