2016-11-05 17:13:54 +00:00
|
|
|
{
|
2017-05-15 17:44:58 +01:00
|
|
|
mkDerivation, kdeWrapper,
|
2017-02-26 12:49:15 +00:00
|
|
|
extra-cmake-modules,
|
2016-11-05 17:13:54 +00:00
|
|
|
frameworkintegration, kcmutils, kcompletion, kconfig, kdecoration, kguiaddons,
|
|
|
|
ki18n, kwidgetsaddons, kservice, kwayland, kwindowsystem, qtx11extras
|
2016-04-21 17:01:22 +01:00
|
|
|
}:
|
|
|
|
|
2016-11-13 21:36:32 +00:00
|
|
|
let
|
2017-05-15 17:44:58 +01:00
|
|
|
unwrapped = mkDerivation {
|
2016-11-13 21:36:32 +00:00
|
|
|
name = "oxygen";
|
2017-02-26 12:49:15 +00:00
|
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
2016-11-13 21:36:32 +00:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
frameworkintegration kcmutils kcompletion kconfig kdecoration kguiaddons
|
|
|
|
ki18n kservice kwayland kwidgetsaddons kwindowsystem qtx11extras
|
|
|
|
];
|
|
|
|
};
|
|
|
|
in
|
2017-01-02 23:33:15 +00:00
|
|
|
kdeWrapper {
|
|
|
|
inherit unwrapped;
|
2016-11-13 21:36:32 +00:00
|
|
|
targets = [ "bin/oxygen-demo5" "bin/oxygen-settings5" ];
|
2016-04-21 17:01:22 +01:00
|
|
|
}
|