nixpkgs/pkgs/desktops/kde-5/plasma/oxygen.nix

20 lines
585 B
Nix
Raw Normal View History

2016-04-21 09:01:22 -07:00
{ plasmaPackage, extra-cmake-modules, ki18n, kcmutils, kconfig
, kdecoration, kguiaddons, kwidgetsaddons, kservice, kcompletion
, frameworkintegration, kwindowsystem, makeQtWrapper, qtx11extras
}:
plasmaPackage {
name = "oxygen";
nativeBuildInputs = [
extra-cmake-modules makeQtWrapper
];
2016-04-28 10:58:47 -07:00
propagatedBuildInputs = [
kcmutils kconfig kdecoration kguiaddons kwidgetsaddons kservice kcompletion
frameworkintegration ki18n kwindowsystem qtx11extras
2016-04-21 09:01:22 -07:00
];
postInstall = ''
wrapQtProgram "$out/bin/oxygen-demo5"
wrapQtProgram "$out/bin/oxygen-settings5"
'';
}