2016-07-15 15:59:21 +01:00
|
|
|
{
|
2017-05-15 17:44:58 +01:00
|
|
|
mkDerivation, lib, copyPathsToStore,
|
2016-07-15 15:59:21 +01:00
|
|
|
|
2017-02-26 12:49:15 +00:00
|
|
|
extra-cmake-modules, kdoctools,
|
2016-07-15 15:59:21 +01:00
|
|
|
|
2017-06-18 09:59:15 +01:00
|
|
|
isocodes, libdbusmenu, libSM, libXcursor, libXtst, pam, wayland,
|
2017-05-26 21:44:36 +01:00
|
|
|
|
2016-07-15 15:59:21 +01:00
|
|
|
baloo, kactivities, kcmutils, kconfig, kcrash, kdbusaddons, kdeclarative,
|
|
|
|
kdelibs4support, kdesu, kglobalaccel, kidletime, kjsembed, knewstuff,
|
2017-05-26 21:44:36 +01:00
|
|
|
knotifyconfig, kpackage, krunner, kscreenlocker, ktexteditor, ktextwidgets,
|
|
|
|
kwallet, kwayland, kwin, kxmlrpcclient, libkscreen, libksysguard,
|
|
|
|
networkmanager-qt, phonon, plasma-framework, prison, solid,
|
|
|
|
|
|
|
|
qtgraphicaleffects, qtquickcontrols, qtquickcontrols2, qtscript, qtx11extras,
|
2016-04-21 17:01:22 +01:00
|
|
|
}:
|
|
|
|
|
2017-05-15 17:44:58 +01:00
|
|
|
mkDerivation {
|
2016-04-21 17:01:22 +01:00
|
|
|
name = "plasma-workspace";
|
|
|
|
|
2017-02-26 12:49:15 +00:00
|
|
|
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
|
2016-06-08 16:26:24 +01:00
|
|
|
buildInputs = [
|
2017-06-18 09:59:15 +01:00
|
|
|
isocodes libdbusmenu libSM libXcursor libXtst pam wayland
|
|
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
2016-04-27 12:55:21 +01:00
|
|
|
baloo kactivities kcmutils kconfig kcrash kdbusaddons kdeclarative
|
2016-05-11 02:09:26 +01:00
|
|
|
kdelibs4support kdesu kglobalaccel kidletime kjsembed knewstuff
|
2017-05-26 21:44:36 +01:00
|
|
|
knotifyconfig kpackage krunner kscreenlocker ktexteditor ktextwidgets
|
|
|
|
kwallet kwayland kwin kxmlrpcclient libkscreen libksysguard
|
|
|
|
networkmanager-qt phonon plasma-framework prison solid
|
|
|
|
|
|
|
|
qtgraphicaleffects qtquickcontrols qtquickcontrols2 qtscript qtx11extras
|
2016-04-21 17:01:22 +01:00
|
|
|
];
|
2017-05-26 21:44:36 +01:00
|
|
|
outputs = [ "out" "dev" "bin" ];
|
2016-04-21 17:01:22 +01:00
|
|
|
|
2016-04-28 19:17:49 +01:00
|
|
|
patches = copyPathsToStore (lib.readPathsFromFile ./. ./series);
|
|
|
|
|
2016-04-21 17:01:22 +01:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace startkde/kstartupconfig/kstartupconfig.cpp \
|
2017-05-26 21:44:36 +01:00
|
|
|
--replace kdostartupconfig5 ''${!outputBin}/bin/kdostartupconfig5
|
2016-04-21 17:01:22 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
postInstall = ''
|
2017-05-26 21:44:36 +01:00
|
|
|
rm "''${!outputBin}/bin/startkde"
|
|
|
|
rm "''${!outputBin}/bin/startplasmacompositor"
|
|
|
|
rm "''${!outputLib}/lib/libexec/startplasma"
|
|
|
|
rm -r "''${!outputBin}/share/wayland-sessions"
|
2016-04-21 17:01:22 +01:00
|
|
|
'';
|
|
|
|
}
|