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

mkDerivation {
  pname = "kdf";
  meta = {
    license = with lib.licenses; [ gpl2 ];
    maintainers = [ lib.maintainers.peterhoeg ];
  };
  nativeBuildInputs = [ extra-cmake-modules kdoctools ];
  buildInputs = [ kcmutils ki18n kiconthemes kio knotifications kxmlgui ];
}