3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/desktops/plasma-5/plasma-desktop/default.nix

55 lines
2.1 KiB
Nix
Raw Normal View History

2016-11-05 17:14:03 +00:00
{
mkDerivation, lib,
extra-cmake-modules, kdoctools,
2017-05-26 21:44:36 +01:00
boost, fontconfig, ibus, libXcursor, libXft, libcanberra_kde, libpulseaudio,
libxkbfile, xf86inputevdev, xf86inputsynaptics, xinput, xkeyboard_config,
2020-11-24 15:29:28 +00:00
xorgserver, util-linux,
2017-05-26 21:44:36 +01:00
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,
plasma-workspace, qqc2-desktop-style, xf86inputlibinput
2016-04-21 17:01:22 +01:00
}:
2019-08-13 22:52:01 +01:00
mkDerivation {
2016-04-21 17:01:22 +01:00
name = "plasma-desktop";
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
buildInputs = [
2020-09-05 15:18:05 +01:00
boost fontconfig ibus libcanberra_kde libpulseaudio libXcursor libXft xorgserver
2017-05-26 21:44:36 +01:00
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
ksysguard kwallet kwin plasma-framework plasma-workspace qqc2-desktop-style
2016-04-21 17:01:22 +01:00
];
patches = [
./hwclock-path.patch
./tzdir.patch
];
postPatch = ''
2020-09-05 15:18:05 +01:00
sed '1i#include <cmath>' -i kcms/touchpad/backends/x11/synapticstouchpad.cpp
'';
2018-01-16 13:38:22 +00:00
CXXFLAGS = [
"-I${lib.getDev xorgserver}/include/xorg"
2020-11-24 15:29:28 +00:00
''-DNIXPKGS_HWCLOCK=\"${lib.getBin util-linux}/sbin/hwclock\"''
];
2016-04-21 17:01:22 +01:00
cmakeFlags = [
2017-05-26 21:44:36 +01:00
"-DEvdev_INCLUDE_DIRS=${lib.getDev xf86inputevdev}/include/xorg"
"-DSynaptics_INCLUDE_DIRS=${lib.getDev xf86inputsynaptics}/include/xorg"
2018-02-08 06:03:33 +00:00
"-DXORGLIBINPUT_INCLUDE_DIRS=${lib.getDev xf86inputlibinput}/include/xorg"
2016-04-21 17:01:22 +01:00
];
postInstall = ''
# Display ~/Desktop contents on the desktop by default.
2017-05-26 21:44:36 +01:00
sed -i "''${!outputBin}/share/plasma/shells/org.kde.plasma.desktop/contents/defaults" \
-e 's/Containment=org.kde.desktopcontainment/Containment=org.kde.plasma.folder/'
'';
2016-04-21 17:01:22 +01:00
}