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

21 lines
606 B
Nix
Raw Normal View History

{ plasmaPackage, extra-cmake-modules, ki18n, kcmutils, kconfig
, kdecoration, kguiaddons, kwidgetsaddons, kservice, kcompletion
2015-10-18 16:24:59 +02:00
, frameworkintegration, kwindowsystem, makeQtWrapper, qtx11extras
2015-09-27 17:03:00 +02:00
}:
plasmaPackage {
2015-09-27 17:03:00 +02:00
name = "oxygen";
nativeBuildInputs = [
2015-10-18 16:24:59 +02:00
extra-cmake-modules makeQtWrapper
2015-09-27 17:03:00 +02:00
];
buildInputs = [
2015-10-10 18:50:36 +02:00
kcmutils kconfig kdecoration kguiaddons kwidgetsaddons
2015-10-10 19:42:19 +02:00
kservice kcompletion
2015-09-27 17:03:00 +02:00
];
2015-10-10 19:42:19 +02:00
propagatedBuildInputs = [ frameworkintegration ki18n kwindowsystem qtx11extras ];
2015-09-27 17:03:00 +02:00
postInstall = ''
2015-10-18 16:24:59 +02:00
wrapQtProgram "$out/bin/oxygen-demo5"
wrapQtProgram "$out/bin/oxygen-settings5"
2015-09-27 17:03:00 +02:00
'';
}