19 lines
553 B
Nix
19 lines
553 B
Nix
{ plasmaPackage, ecm, ki18n, kcmutils, kconfig
|
|
, kdecoration, kguiaddons, kwidgetsaddons, kservice, kcompletion
|
|
, frameworkintegration, kwindowsystem, makeQtWrapper, qtx11extras
|
|
}:
|
|
|
|
plasmaPackage {
|
|
name = "oxygen";
|
|
nativeBuildInputs = [
|
|
ecm makeQtWrapper
|
|
];
|
|
propagatedBuildInputs = [
|
|
kcmutils kconfig kdecoration kguiaddons kwidgetsaddons kservice kcompletion
|
|
frameworkintegration ki18n kwindowsystem qtx11extras
|
|
];
|
|
postInstall = ''
|
|
wrapQtProgram "$out/bin/oxygen-demo5"
|
|
wrapQtProgram "$out/bin/oxygen-settings5"
|
|
'';
|
|
}
|