2016-07-15 16:59:21 +02:00
|
|
|
{
|
2019-06-16 21:59:06 +02:00
|
|
|
mkDerivation, lib,
|
2016-07-15 16:59:21 +02:00
|
|
|
|
2017-02-26 13:49:15 +01:00
|
|
|
extra-cmake-modules, kdoctools,
|
2016-07-15 16:59:21 +02:00
|
|
|
|
2017-10-20 01:22:03 +02:00
|
|
|
coreutils, dbus, gnugrep, gnused, isocodes, libdbusmenu, libSM, libXcursor,
|
|
|
|
libXtst, pam, wayland, xmessage, xprop, xrdb, xsetroot,
|
2017-05-26 22:44:36 +02:00
|
|
|
|
2020-02-06 03:08:40 +01:00
|
|
|
baloo, breeze-qt5, kactivities, kactivities-stats, kcmutils, kconfig, kcrash,
|
|
|
|
kdbusaddons, kdeclarative, kdelibs4support, kdesu, kglobalaccel, kidletime,
|
|
|
|
kinit, kjsembed, knewstuff, knotifyconfig, kpackage, kpeople, krunner,
|
|
|
|
kscreenlocker, ktexteditor, ktextwidgets, kwallet, kwayland, kwin,
|
|
|
|
kxmlrpcclient, libkscreen, libksysguard, libqalculate, networkmanager-qt,
|
|
|
|
phonon, plasma-framework, prison, solid, kholidays,
|
2017-05-26 22:44:36 +02:00
|
|
|
|
2017-10-20 01:22:03 +02:00
|
|
|
qtgraphicaleffects, qtquickcontrols, qtquickcontrols2, qtscript, qttools,
|
|
|
|
qtwayland, qtx11extras,
|
2016-04-21 18:01:22 +02:00
|
|
|
}:
|
|
|
|
|
2017-10-20 01:22:03 +02:00
|
|
|
let inherit (lib) getBin getLib; in
|
|
|
|
|
2017-05-15 18:44:58 +02:00
|
|
|
mkDerivation {
|
2016-04-21 18:01:22 +02:00
|
|
|
name = "plasma-workspace";
|
|
|
|
|
2017-02-26 13:49:15 +01:00
|
|
|
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
|
2016-06-08 17:26:24 +02:00
|
|
|
buildInputs = [
|
2017-06-18 10:59:15 +02:00
|
|
|
isocodes libdbusmenu libSM libXcursor libXtst pam wayland
|
2017-06-23 16:55:04 +02:00
|
|
|
|
2020-01-28 14:20:48 +01:00
|
|
|
baloo kactivities kactivities-stats kcmutils kconfig kcrash kdbusaddons
|
|
|
|
kdeclarative kdelibs4support kdesu kglobalaccel kidletime kjsembed knewstuff
|
|
|
|
knotifyconfig kpackage kpeople krunner kscreenlocker ktexteditor
|
|
|
|
ktextwidgets kwallet kwayland kwin kxmlrpcclient libkscreen libksysguard
|
|
|
|
libqalculate networkmanager-qt phonon plasma-framework prison solid
|
|
|
|
kholidays
|
2017-05-26 22:44:36 +02:00
|
|
|
|
2017-10-20 01:22:03 +02:00
|
|
|
qtgraphicaleffects qtquickcontrols qtquickcontrols2 qtscript qtwayland qtx11extras
|
2016-04-21 18:01:22 +02:00
|
|
|
];
|
2019-07-05 17:41:41 +02:00
|
|
|
propagatedUserEnvPkgs = [ qtgraphicaleffects ];
|
|
|
|
outputs = [ "out" "dev" ];
|
2016-04-21 18:01:22 +02:00
|
|
|
|
2020-02-06 03:08:40 +01:00
|
|
|
cmakeFlags = [
|
|
|
|
''-DNIXPKGS_BREEZE_WALLPAPERS=${getBin breeze-qt5}/share/wallpapers''
|
|
|
|
];
|
|
|
|
|
2018-07-10 16:53:12 +02:00
|
|
|
patches = [
|
2020-01-28 14:20:48 +01:00
|
|
|
./0001-startkde.patch
|
2020-02-06 03:08:40 +01:00
|
|
|
./0002-absolute-wallpaper-install-dir.patch
|
2018-07-10 16:53:12 +02:00
|
|
|
];
|
2016-04-28 20:17:49 +02:00
|
|
|
|
2020-02-06 03:08:40 +01:00
|
|
|
|
2020-01-28 14:20:48 +01:00
|
|
|
NIX_CFLAGS_COMPILE = [
|
|
|
|
''-DNIXPKGS_XMESSAGE="${getBin xmessage}/bin/xmessage"''
|
|
|
|
''-DNIXPKGS_XRDB="${getBin xrdb}/bin/xrdb"''
|
|
|
|
''-DNIXPKGS_XSETROOT="${getBin xsetroot}/bin/xsetroot"''
|
|
|
|
''-DNIXPKGS_XPROP="${getBin xprop}/bin/xprop"''
|
|
|
|
''-DNIXPKGS_DBUS_UPDATE_ACTIVATION_ENVIRONMENT="${getBin dbus}/bin/dbus-update-activation-environment"''
|
|
|
|
''-DNIXPKGS_START_KDEINIT_WRAPPER="${getLib kinit}/libexec/kf5/start_kdeinit_wrapper"''
|
|
|
|
''-DNIXPKGS_KDEINIT5_SHUTDOWN="${getBin kinit}/bin/kdeinit5_shutdown"''
|
|
|
|
];
|
2016-04-21 18:01:22 +02:00
|
|
|
}
|