about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/plasma-mobile/spacebar.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/applications/plasma-mobile/spacebar.nix')
-rw-r--r--nixpkgs/pkgs/applications/plasma-mobile/spacebar.nix40
1 files changed, 40 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/applications/plasma-mobile/spacebar.nix b/nixpkgs/pkgs/applications/plasma-mobile/spacebar.nix
new file mode 100644
index 000000000000..1c661041f7ae
--- /dev/null
+++ b/nixpkgs/pkgs/applications/plasma-mobile/spacebar.nix
@@ -0,0 +1,40 @@
+{ lib
+, mkDerivation
+
+, cmake
+, extra-cmake-modules
+
+, kcontacts
+, ki18n
+, kirigami2
+, knotifications
+, kpeople
+, libqofono
+, telepathy
+}:
+
+mkDerivation rec {
+  pname = "spacebar";
+
+  nativeBuildInputs = [
+    cmake
+    extra-cmake-modules
+  ];
+
+  buildInputs = [
+    kcontacts
+    ki18n
+    kirigami2
+    knotifications
+    kpeople
+    libqofono
+    telepathy
+  ];
+
+  meta = with lib; {
+    description = "SMS application for Plasma Mobile";
+    homepage = "https://invent.kde.org/plasma-mobile/spacebar";
+    license = licenses.gpl2Plus;
+    maintainers = with maintainers; [ samueldr ];
+  };
+}