nixpkgs/pkgs/applications/plasma-mobile/spacebar.nix

45 lines
684 B
Nix
Raw Normal View History

2021-03-24 21:37:05 +01:00
{ lib
, mkDerivation
, cmake
, extra-cmake-modules
, kcontacts
, ki18n
, kirigami2
, knotifications
, kpeople
2021-10-06 23:03:12 +02:00
, libphonenumber
2021-03-24 21:37:05 +01:00
, libqofono
2021-10-06 23:03:12 +02:00
, protobuf
2021-03-24 21:37:05 +01:00
, telepathy
}:
mkDerivation rec {
pname = "spacebar";
nativeBuildInputs = [
cmake
extra-cmake-modules
];
buildInputs = [
kcontacts
ki18n
kirigami2
knotifications
kpeople
2021-10-06 23:03:12 +02:00
libphonenumber
2021-03-24 21:37:05 +01:00
libqofono
2021-10-06 23:03:12 +02:00
protobuf # Needed by libphonenumber
2021-03-24 21:37:05 +01:00
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 ];
};
}