biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / plasma-mobile / spacebar.nix
blob4e38649d47e71a3b61ac472e56e9cafc01725111
1 { lib
2 , mkDerivation
4 , cmake
5 , extra-cmake-modules
6 , wrapQtAppsHook
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
24 mkDerivation {
25   pname = "spacebar";
27   nativeBuildInputs = [
28     cmake
29     extra-cmake-modules
30     wrapQtAppsHook
31   ];
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   ];
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   };