about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/kde/kdebugsettings.nix
blob: f4dd7ec145d0623a8a3642169802c3ec38f9aaf7 (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 {
  pname = "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 = [ ];
}