mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-13 21:32:23 +03:00
21 lines
606 B
Nix
21 lines
606 B
Nix
{ plasmaPackage, extra-cmake-modules, ki18n, kcmutils, kconfig
|
|
, kdecoration, kguiaddons, kwidgetsaddons, kservice, kcompletion
|
|
, frameworkintegration, kwindowsystem, makeQtWrapper, qtx11extras
|
|
}:
|
|
|
|
plasmaPackage {
|
|
name = "oxygen";
|
|
nativeBuildInputs = [
|
|
extra-cmake-modules makeQtWrapper
|
|
];
|
|
buildInputs = [
|
|
kcmutils kconfig kdecoration kguiaddons kwidgetsaddons
|
|
kservice kcompletion
|
|
];
|
|
propagatedBuildInputs = [ frameworkintegration ki18n kwindowsystem qtx11extras ];
|
|
postInstall = ''
|
|
wrapQtProgram "$out/bin/oxygen-demo5"
|
|
wrapQtProgram "$out/bin/oxygen-settings5"
|
|
'';
|
|
}
|