40 lines
599 B
Nix
40 lines
599 B
Nix
|
{ mkDerivation
|
||
|
, extra-cmake-modules
|
||
|
, frameworkintegration
|
||
|
, kcmutils
|
||
|
, kcompletion
|
||
|
, kconfig
|
||
|
, kdecoration
|
||
|
, kguiaddons
|
||
|
, ki18n
|
||
|
, kwidgetsaddons
|
||
|
, kservice
|
||
|
, kwayland
|
||
|
, kwindowsystem
|
||
|
, qtdeclarative
|
||
|
, qtx11extras
|
||
|
, libXdmcp
|
||
|
}:
|
||
|
|
||
|
mkDerivation {
|
||
|
pname = "oxygen";
|
||
|
nativeBuildInputs = [ extra-cmake-modules ];
|
||
|
propagatedBuildInputs = [
|
||
|
frameworkintegration
|
||
|
kcmutils
|
||
|
kcompletion
|
||
|
kconfig
|
||
|
kdecoration
|
||
|
kguiaddons
|
||
|
ki18n
|
||
|
kservice
|
||
|
kwayland
|
||
|
kwidgetsaddons
|
||
|
kwindowsystem
|
||
|
qtdeclarative
|
||
|
qtx11extras
|
||
|
libXdmcp
|
||
|
];
|
||
|
outputs = [ "bin" "dev" "out" ];
|
||
|
}
|