nixpkgs/pkgs/applications/plasma-mobile/spacebar.nix
2021-10-05 23:21:45 -04:00

41 lines
597 B
Nix

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