summary refs log tree commit diff
path: root/pkgs/applications/kde/kdf.nix
blob: 333fea3df53ee063a2c4b447ad1ee80aaecd0fec (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
  mkDerivation, lib,
  extra-cmake-modules, kdoctools,
  kcmutils
}:

mkDerivation {
  name = "kdf";
  meta = {
    license = with lib.licenses; [ gpl2 ];
    maintainers = [ lib.maintainers.peterhoeg ];
  };
  nativeBuildInputs = [ extra-cmake-modules kdoctools ];
  propagatedBuildInputs = [ kcmutils ];
}