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

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

59 lines
872 B
Nix
Raw Normal View History

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