2016-11-05 18:14:03 +01:00
|
|
|
{
|
2017-05-15 18:44:58 +02:00
|
|
|
mkDerivation, lib, copyPathsToStore,
|
2017-02-26 13:49:15 +01:00
|
|
|
extra-cmake-modules, kdoctools,
|
2017-05-26 22:44:36 +02:00
|
|
|
|
|
|
|
boost, fontconfig, ibus, libXcursor, libXft, libcanberra_kde, libpulseaudio,
|
|
|
|
libxkbfile, xf86inputevdev, xf86inputsynaptics, xinput, xkeyboard_config,
|
|
|
|
xorgserver, utillinux,
|
|
|
|
|
|
|
|
qtdeclarative, qtquickcontrols, qtquickcontrols2, qtsvg, qtx11extras,
|
|
|
|
|
|
|
|
attica, baloo, kactivities, kactivities-stats, kauth, kcmutils, kdbusaddons,
|
|
|
|
kdeclarative, kded, kdelibs4support, kemoticons, kglobalaccel, ki18n,
|
|
|
|
kitemmodels, knewstuff, knotifications, knotifyconfig, kpeople, krunner,
|
|
|
|
kscreenlocker, ksysguard, kwallet, kwin, phonon, plasma-framework,
|
2020-09-01 12:34:02 +02:00
|
|
|
plasma-workspace, qqc2-desktop-style, xf86inputlibinput
|
2016-04-21 18:01:22 +02:00
|
|
|
}:
|
|
|
|
|
2019-08-13 23:52:01 +02:00
|
|
|
mkDerivation {
|
2016-04-21 18:01:22 +02:00
|
|
|
name = "plasma-desktop";
|
2017-02-26 13:49:15 +01:00
|
|
|
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
|
2016-06-08 20:51:25 +02:00
|
|
|
buildInputs = [
|
2017-05-26 22:44:36 +02:00
|
|
|
boost fontconfig ibus libcanberra_kde libpulseaudio libXcursor libXft
|
|
|
|
libxkbfile phonon xf86inputevdev xf86inputsynaptics xinput xkeyboard_config
|
|
|
|
|
|
|
|
qtdeclarative qtquickcontrols qtquickcontrols2 qtsvg qtx11extras
|
|
|
|
|
|
|
|
attica baloo kactivities kactivities-stats kauth kcmutils kdbusaddons
|
|
|
|
kdeclarative kded kdelibs4support kemoticons kglobalaccel ki18n kitemmodels
|
|
|
|
knewstuff knotifications knotifyconfig kpeople krunner kscreenlocker
|
2020-09-01 12:34:02 +02:00
|
|
|
ksysguard kwallet kwin plasma-framework plasma-workspace qqc2-desktop-style
|
2016-04-21 18:01:22 +02:00
|
|
|
];
|
2017-01-20 17:44:21 +01:00
|
|
|
|
|
|
|
patches = copyPathsToStore (lib.readPathsFromFile ./. ./series);
|
2016-06-19 10:18:30 +02:00
|
|
|
postPatch = ''
|
|
|
|
sed '1i#include <cmath>' -i kcms/touchpad/src/backends/x11/synapticstouchpad.cpp
|
|
|
|
'';
|
2018-01-16 14:38:22 +01:00
|
|
|
CXXFLAGS = [
|
2017-05-26 22:43:31 +02:00
|
|
|
"-I${lib.getDev xorgserver}/include/xorg"
|
2018-01-16 14:38:22 +01:00
|
|
|
''-DNIXPKGS_HWCLOCK=\"${lib.getBin utillinux}/sbin/hwclock\"''
|
2017-05-26 22:43:31 +02:00
|
|
|
];
|
2016-04-21 18:01:22 +02:00
|
|
|
cmakeFlags = [
|
2017-05-26 22:44:36 +02:00
|
|
|
"-DEvdev_INCLUDE_DIRS=${lib.getDev xf86inputevdev}/include/xorg"
|
|
|
|
"-DSynaptics_INCLUDE_DIRS=${lib.getDev xf86inputsynaptics}/include/xorg"
|
2018-02-08 07:03:33 +01:00
|
|
|
"-DXORGLIBINPUT_INCLUDE_DIRS=${lib.getDev xf86inputlibinput}/include/xorg"
|
2016-04-21 18:01:22 +02:00
|
|
|
];
|
2016-11-13 19:33:38 +01:00
|
|
|
postInstall = ''
|
|
|
|
# Display ~/Desktop contents on the desktop by default.
|
2017-05-26 22:44:36 +02:00
|
|
|
sed -i "''${!outputBin}/share/plasma/shells/org.kde.plasma.desktop/contents/defaults" \
|
2016-11-13 19:33:38 +01:00
|
|
|
-e 's/Containment=org.kde.desktopcontainment/Containment=org.kde.plasma.folder/'
|
|
|
|
'';
|
2016-04-21 18:01:22 +02:00
|
|
|
}
|