nixpkgs/pkgs/applications/kde/kdf.nix

25 lines
413 B
Nix
Raw Normal View History

2016-08-26 06:36:45 +00:00
{
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 {
inherit unwrapped;
targets = [ "bin/kdf" ];
}