My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nomicon/pkgs/applications/plasma-mobile/spacebar.nix

41 lines
597 B

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