nixpkgs/pkgs/applications/kde/kdf.nix
2017-02-27 11:49:46 -06:00

25 lines
445 B
Nix

{
kdeApp, lib, kdeWrapper,
extra-cmake-modules, kdoctools,
kcmutils
}:
let
unwrapped =
kdeApp {
name = "kdf";
meta = {
license = with lib.licenses; [ gpl2 ];
maintainers = [ lib.maintainers.peterhoeg ];
};
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
propagatedBuildInputs = [
kcmutils
];
};
in
kdeWrapper {
inherit unwrapped;
targets = [ "bin/kdf" ];
}