mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 16:33:15 +00:00
22 lines
400 B
Nix
22 lines
400 B
Nix
|
{
|
||
|
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" ]; }
|