repo.or.cz
/
NixPkgs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
biome: 1.9.2 -> 1.9.3
[NixPkgs.git]
/
pkgs
/
desktops
/
plasma-5
/
plasma-nm
/
default.nix
blob
1915196e4949dc7b0c097253a18db4dd686f935c
1
{ mkDerivation
2
, substituteAll
3
, extra-cmake-modules
4
, kdoctools
5
, kcmutils
6
, kcompletion
7
, kconfigwidgets
8
, kcoreaddons
9
, kdbusaddons
10
, kdeclarative
11
, ki18n
12
, kiconthemes
13
, kinit
14
, kio
15
, kitemviews
16
, knotifications
17
, kservice
18
, kwallet
19
, kwidgetsaddons
20
, kwindowsystem
21
, kxmlgui
22
, plasma-framework
23
, prison
24
, solid
25
, mobile-broadband-provider-info
26
, openconnect
27
, openvpn
28
, modemmanager-qt
29
, networkmanager-qt
30
, qca-qt5
31
, qtdeclarative
32
, qttools
33
}:
34
35
mkDerivation {
36
pname = "plasma-nm";
37
nativeBuildInputs = [ extra-cmake-modules kdoctools qttools ];
38
buildInputs = [
39
kdeclarative
40
ki18n
41
kio
42
kwindowsystem
43
plasma-framework
44
kcompletion
45
kcmutils
46
kconfigwidgets
47
kcoreaddons
48
kdbusaddons
49
kiconthemes
50
kinit
51
kitemviews
52
knotifications
53
kservice
54
kwallet
55
kwidgetsaddons
56
kxmlgui
57
prison
58
solid
59
60
qtdeclarative
61
modemmanager-qt
62
networkmanager-qt
63
qca-qt5
64
mobile-broadband-provider-info
65
openconnect
66
];
67
68
cmakeFlags = [
69
"-DBUILD_MOBILE=ON"
70
];
71
72
patches = [
73
(substituteAll {
74
src = ./0002-openvpn-binary-path.patch;
75
inherit openvpn;
76
})
77
];
78
}