summary refs log tree commit diff
path: root/pkgs/desktops/plasma-5.4/plasma-workspace/default.nix
blob: d6537b82dd6e794678a2abb17adbe0d9ccde5381 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{ plasmaPackage
, extra-cmake-modules
, kdoctools
, 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
, qtscript
, qtx11extras
, wayland
, libksysguard
, bash
, coreutils
, gnused
, gnugrep
, socat
, kconfig
, kinit
, kservice
, qttools
, dbus
, mkfontdir
, xmessage
, xprop
, xrdb
, xset
, xsetroot
}:

plasmaPackage {
  name = "plasma-workspace";
  nativeBuildInputs = [
    extra-cmake-modules
    kdoctools
  ];
  buildInputs = [
    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
    qtscript
    qtx11extras
    wayland
  ];
  propagatedBuildInputs = [
    libksysguard
  ];
  patches = [ ./0001-startkde-NixOS-patches.patch ];

  inherit bash coreutils gnused gnugrep socat;
  inherit kconfig kinit kservice qttools;
  inherit mkfontdir xmessage xprop xrdb xset xsetroot;
  inherit (dbus) dbus-launch;
  postPatch = ''
    substituteAllInPlace startkde/startkde.cmake
    substituteInPlace startkde/kstartupconfig/kstartupconfig.cpp \
      --replace kdostartupconfig5 $out/bin/kdostartupconfig5
  '';
  postInstall = ''
    wrapKDEProgram "$out/bin/ksmserver"
    wrapKDEProgram "$out/bin/plasmawindowed"
    wrapKDEProgram "$out/bin/kcminit_startup"
    wrapKDEProgram "$out/bin/ksplashqml"
    wrapKDEProgram "$out/bin/kcheckrunning"
    wrapKDEProgram "$out/bin/systemmonitor"
    wrapKDEProgram "$out/bin/kstartupconfig5"
    wrapKDEProgram "$out/bin/startplasmacompositor"
    wrapKDEProgram "$out/bin/kdostartupconfig5"
    wrapKDEProgram "$out/bin/klipper"
    wrapKDEProgram "$out/bin/kuiserver5"
    wrapKDEProgram "$out/bin/krunner"
    wrapKDEProgram "$out/bin/plasmashell"
  '';
}