summary refs log tree commit diff
path: root/pkgs/applications/kde/kdf.nix
blob: c73eadc1df449b78d2586ac884378ca2f6578c52 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
  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" ];
}