fd29f6685f
Stay consistent with other multiple output packages.
19 lines
530 B
Nix
19 lines
530 B
Nix
{
|
|
mkDerivation,
|
|
extra-cmake-modules,
|
|
frameworkintegration, kcmutils, kcompletion, kconfig, kdecoration, kguiaddons,
|
|
ki18n, kwidgetsaddons, kservice, kwayland, kwindowsystem, qtdeclarative,
|
|
qtx11extras
|
|
}:
|
|
|
|
mkDerivation {
|
|
name = "oxygen";
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
propagatedBuildInputs = [
|
|
frameworkintegration kcmutils kcompletion kconfig kdecoration kguiaddons
|
|
ki18n kservice kwayland kwidgetsaddons kwindowsystem qtdeclarative
|
|
qtx11extras
|
|
];
|
|
outputs = [ "bin" "dev" "out" ];
|
|
}
|