about summary refs log tree commit diff
path: root/pkgs/applications/kde/kdf.nix
blob: aaeac0161f5d7db45ad0720c4679b43b96ea623d (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
{
  mkDerivation, lib, kdeWrapper,
  extra-cmake-modules, kdoctools,
  kcmutils
}:

let
  unwrapped =
    mkDerivation {
      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" ];
}