spacebar: init at 21.05
This commit is contained in:
parent
907976ea4e
commit
ea73dda921
2 changed files with 41 additions and 0 deletions
|
@ -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
|
||||
|
|
40
pkgs/applications/plasma-mobile/spacebar.nix
Normal file
40
pkgs/applications/plasma-mobile/spacebar.nix
Normal 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 ];
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue