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
/
applications
/
plasma-mobile
/
spacebar.nix
blob
4e38649d47e71a3b61ac472e56e9cafc01725111
1
{ lib
2
, mkDerivation
3
4
, cmake
5
, extra-cmake-modules
6
, wrapQtAppsHook
7
8
, c-ares
9
, curl
10
, kcontacts
11
, ki18n
12
, kio
13
, kirigami-addons
14
, kirigami2
15
, knotifications
16
, kpeople
17
, libphonenumber
18
, modemmanager-qt
19
, protobuf
20
, qcoro
21
, qtquickcontrols2
22
}:
23
24
mkDerivation {
25
pname = "spacebar";
26
27
nativeBuildInputs = [
28
cmake
29
extra-cmake-modules
30
wrapQtAppsHook
31
];
32
33
buildInputs = [
34
c-ares
35
curl
36
kcontacts
37
ki18n
38
kio
39
kirigami-addons
40
kirigami2
41
knotifications
42
kpeople
43
libphonenumber
44
modemmanager-qt
45
protobuf # Needed by libphonenumber
46
qcoro
47
qtquickcontrols2
48
];
49
50
meta = with lib; {
51
description = "SMS application for Plasma Mobile";
52
mainProgram = "spacebar";
53
homepage = "https://invent.kde.org/plasma-mobile/spacebar";
54
license = licenses.gpl2Plus;
55
maintainers = [ ];
56
};
57
}