forked from mirrors/nixpkgs
c10bb5179f
The startkde patch was invalidated in the plasma-workspace-5.5.1 release. Quilt is now used to manage these large patches; it is much simpler to use than Git.
66 lines
2.3 KiB
Nix
66 lines
2.3 KiB
Nix
{ plasmaPackage, lib, copyPathsToStore
|
|
, extra-cmake-modules, kdoctools, makeQtWrapper
|
|
, baloo, kactivities, kcmutils, kcrash, kdbusaddons, kdeclarative
|
|
, kdelibs4support, kdesu, kdewebkit, kglobalaccel, kidletime
|
|
, kjsembed, knewstuff, knotifyconfig, kpackage, krunner
|
|
, ktexteditor, ktextwidgets, kwallet, kwayland, kwin, kxmlrpcclient
|
|
, libdbusmenu, libkscreen, libSM, libXcursor, networkmanager-qt
|
|
, pam, phonon, plasma-framework, qtquick1, qtscript, qtx11extras, wayland
|
|
, libksysguard, bash, coreutils, gnused, gnugrep, socat, kconfig
|
|
, kinit, kservice, qttools, dbus_tools, mkfontdir, xmessage
|
|
, xprop, xrdb, xset, xsetroot, solid, qtquickcontrols
|
|
}:
|
|
|
|
plasmaPackage rec {
|
|
name = "plasma-workspace";
|
|
|
|
nativeBuildInputs = [
|
|
extra-cmake-modules
|
|
kdoctools
|
|
makeQtWrapper
|
|
];
|
|
buildInputs = [
|
|
kcmutils kcrash kdbusaddons kdesu kdewebkit kjsembed knewstuff
|
|
knotifyconfig kpackage ktextwidgets kwallet kwayland kxmlrpcclient
|
|
libdbusmenu libSM libXcursor networkmanager-qt pam phonon
|
|
qtscript wayland
|
|
];
|
|
propagatedBuildInputs = [
|
|
baloo kactivities kdeclarative kdelibs4support kglobalaccel
|
|
kidletime krunner ktexteditor kwin libkscreen libksysguard
|
|
plasma-framework qtquick1 qtquickcontrols qtx11extras solid
|
|
];
|
|
|
|
patches = copyPathsToStore (lib.readPathsFromFile ./. ./series);
|
|
inherit bash coreutils gnused gnugrep socat;
|
|
inherit kconfig kinit kservice qttools;
|
|
inherit dbus_tools mkfontdir xmessage xprop xrdb xset xsetroot;
|
|
postPatch = ''
|
|
substituteAllInPlace startkde/startkde.cmake
|
|
substituteInPlace startkde/kstartupconfig/kstartupconfig.cpp \
|
|
--replace kdostartupconfig5 $out/bin/kdostartupconfig5
|
|
'';
|
|
|
|
postInstall = ''
|
|
rm "$out/bin/startplasmacompositor"
|
|
rm "$out/lib/libexec/startplasma"
|
|
rm -r "$out/share/wayland-sessions"
|
|
'';
|
|
|
|
postFixup = ''
|
|
wrapQtProgram "$out/bin/ksmserver"
|
|
wrapQtProgram "$out/bin/plasmawindowed"
|
|
wrapQtProgram "$out/bin/kcminit_startup"
|
|
wrapQtProgram "$out/bin/ksplashqml"
|
|
wrapQtProgram "$out/bin/kcheckrunning"
|
|
wrapQtProgram "$out/bin/systemmonitor"
|
|
wrapQtProgram "$out/bin/kstartupconfig5"
|
|
wrapQtProgram "$out/bin/kdostartupconfig5"
|
|
wrapQtProgram "$out/bin/klipper"
|
|
wrapQtProgram "$out/bin/kuiserver5"
|
|
wrapQtProgram "$out/bin/krunner"
|
|
wrapQtProgram "$out/bin/plasmashell"
|
|
wrapQtProgram "$out/lib/libexec/drkonqi"
|
|
'';
|
|
}
|