d24a5a49ea
This dependency causes substantial system bloat: gpsd depends on pythonFull, which in turn depends on tcl/tk, etc.
40 lines
1.4 KiB
Nix
40 lines
1.4 KiB
Nix
{ stdenv, kde, kdelibs, qimageblitz, libdbusmenu_qt, xorg, lm_sensors
|
|
, pciutils, libraw1394, libusb1, python, libqalculate, akonadi
|
|
, xkeyboard_config, kdepimlibs, pam, boost, gpsd, prison
|
|
, libjpeg, pkgconfig, kactivities, qjson, udev, fetchurl
|
|
}:
|
|
|
|
kde {
|
|
#todo: wayland, xmms, libusb isn't found
|
|
#note: xorg.libXft is needed to build kfontview and kfontinst though this isn't reflected in the build log
|
|
buildInputs =
|
|
[ kdelibs qimageblitz libdbusmenu_qt xorg.libxcb xorg.xcbutilimage libjpeg
|
|
xorg.xcbutilrenderutil xorg.xcbutilkeysyms xorg.libpthreadstubs xorg.libXdmcp
|
|
xorg.libxkbfile xorg.libXcomposite xorg.libXtst
|
|
xorg.libXdamage xorg.libXft
|
|
|
|
python boost qjson lm_sensors /* gpsd */ libraw1394 pciutils udev
|
|
akonadi pam libusb1 libqalculate kdepimlibs prison
|
|
kactivities
|
|
];
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
preConfigure =
|
|
''
|
|
# Fix incorrect path to kde4-config.
|
|
substituteInPlace startkde.cmake --replace '$bindir/kde4-config' ${kdelibs}/bin/kde4-config
|
|
|
|
# Fix the path to the keyboard configuration files.
|
|
substituteInPlace kcontrol/keyboard/xkb_rules.cpp \
|
|
--replace /usr/share/X11 ${xkeyboard_config}/etc/X11
|
|
'';
|
|
|
|
enableParallelBuilding = false; # frequent problems on Hydra
|
|
|
|
meta = {
|
|
description = "KDE workspace components such as Plasma, Kwin and System Settings";
|
|
license = stdenv.lib.licenses.gpl2;
|
|
};
|
|
}
|