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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

58 lines
878 B
Nix
Raw Normal View History

2021-03-24 21:37:05 +01:00
{ lib
, mkDerivation
, cmake
, extra-cmake-modules
, wrapQtAppsHook
2021-03-24 21:37:05 +01:00
2022-10-01 06:18:48 +02:00
, c-ares
, curl
2021-03-24 21:37:05 +01:00
, kcontacts
, ki18n
, kio
, kirigami-addons
2021-03-24 21:37:05 +01:00
, kirigami2
, knotifications
, kpeople
2021-10-06 23:03:12 +02:00
, libphonenumber
, modemmanager-qt
2021-10-06 23:03:12 +02:00
, protobuf
, qcoro
, qtquickcontrols2
2021-03-24 21:37:05 +01:00
}:
2023-03-17 23:39:35 +01:00
mkDerivation {
2021-03-24 21:37:05 +01:00
pname = "spacebar";
nativeBuildInputs = [
cmake
extra-cmake-modules
wrapQtAppsHook
2021-03-24 21:37:05 +01:00
];
buildInputs = [
2022-10-01 06:18:48 +02:00
c-ares
curl
2021-03-24 21:37:05 +01:00
kcontacts
ki18n
kio
kirigami-addons
2021-03-24 21:37:05 +01:00
kirigami2
knotifications
kpeople
2021-10-06 23:03:12 +02:00
libphonenumber
modemmanager-qt
2021-10-06 23:03:12 +02:00
protobuf # Needed by libphonenumber
qcoro
qtquickcontrols2
2021-03-24 21:37:05 +01:00
];
meta = with lib; {
description = "SMS application for Plasma Mobile";
mainProgram = "spacebar";
2021-03-24 21:37:05 +01:00
homepage = "https://invent.kde.org/plasma-mobile/spacebar";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ samueldr ];
};
}