summary refs log tree commit diff
path: root/pkgs/applications/kde/kdebugsettings.nix
blob: a58e1b25a2ee837e2fe3a0883f3291284f8ac8d2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
  mkDerivation, lib,
  extra-cmake-modules, kdoctools,
  gettext,
  kcoreaddons, kconfig, kdbusaddons, kwidgetsaddons, kitemviews, kcompletion,
  python
}:

mkDerivation {
  name = "kdebugsettings";
  meta = {
    license = with lib.licenses; [ gpl2 ];
    maintainers = [ lib.maintainers.rittelle ];
  };
  nativeBuildInputs = [ extra-cmake-modules kdoctools ];
  buildInputs = [
    gettext kcoreaddons kconfig kdbusaddons kwidgetsaddons kitemviews kcompletion python
  ];
  propagatedUserEnvPkgs = [ ];
}