summary refs log tree commit diff
path: root/pkgs/applications/kde/kdf.nix
blob: 97e74eb2e12575a746d9d09a7246ca1b1425025d (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,
  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" ];
}