nixpkgs/pkgs/desktops/plasma-5.4/systemsettings.nix

21 lines
508 B
Nix
Raw Normal View History

2015-10-10 18:31:23 +02:00
{ plasmaPackage, extra-cmake-modules, kdoctools, kitemviews
, kcmutils, ki18n, kio, kservice, kiconthemes, kwindowsystem
, kxmlgui, kdbusaddons, kconfig, khtml
2015-09-27 17:03:00 +02:00
}:
plasmaPackage {
2015-09-27 17:03:00 +02:00
name = "systemsettings";
nativeBuildInputs = [
extra-cmake-modules
kdoctools
];
buildInputs = [
2015-10-10 19:29:20 +02:00
kitemviews kcmutils kservice kiconthemes kwindowsystem
2015-10-10 18:31:23 +02:00
kxmlgui kdbusaddons kconfig
2015-09-27 17:03:00 +02:00
];
2015-10-10 19:29:20 +02:00
propagatedBuildInputs = [ khtml ki18n kio ];
2015-09-27 17:03:00 +02:00
postInstall = ''
wrapKDEProgram "$out/bin/systemsettings5"
'';
}