spacebar: init at 21.05

This commit is contained in:
Samuel Dionne-Riel 2021-03-24 16:37:05 -04:00
parent 907976ea4e
commit ea73dda921
2 changed files with 41 additions and 0 deletions

View file

@ -68,6 +68,7 @@ let
krecorder = callPackage ./krecorder.nix {};
plasma-dialer = callPackage ./plasma-dialer.nix {};
plasma-phonebook = callPackage ./plasma-phonebook.nix {};
spacebar = callPackage ./spacebar.nix {};
};
in lib.makeScope libsForQt5.newScope packages

View file

@ -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 ];
};
}