Skip to content

Commit

Permalink
spacebar-sms: init at 21.05
Browse files Browse the repository at this point in the history
  • Loading branch information
samueldr committed Jun 1, 2021
1 parent 39c0b15 commit b06212c
Show file tree
Hide file tree
Showing 2 changed files with 52 additions and 0 deletions.
50 changes: 50 additions & 0 deletions pkgs/tools/networking/spacebar-sms/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
{ lib
, mkDerivation
, fetchFromGitLab

, cmake
, extra-cmake-modules

, kcontacts
, ki18n
, kirigami2
, knotifications
, kpeople
, libqofono
, telepathy
}:

mkDerivation rec {
pname = "spacebar";
version = "21.05";

src = fetchFromGitLab {
domain = "invent.kde.org";
owner = "plasma-mobile";
repo = pname;
rev = "v${version}";
sha256 = "18fx5h1jpwdgi2if5rndllqszfzykdxcdn3aj3gl0ny3dg55pxnj";
};

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 ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -8695,6 +8695,8 @@ in

sozu = callPackage ../servers/sozu { };

spacebar-sms = libsForQt5.callPackage ../tools/networking/spacebar-sms { };

sparsehash = callPackage ../development/libraries/sparsehash { };

spectre-meltdown-checker = callPackage ../tools/security/spectre-meltdown-checker { };
Expand Down

0 comments on commit b06212c

Please sign in to comment.