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

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

55 lines
849 B
Nix
Raw Normal View History

2021-03-22 22:45:47 +00:00
{ lib
, mkDerivation
, cmake
, extra-cmake-modules
, callaudiod
2021-03-22 22:45:47 +00:00
, kcontacts
, kcoreaddons
, kdbusaddons
, ki18n
, kirigami2
, knotifications
, kpeople
, libphonenumber
, modemmanager-qt
2021-03-22 22:45:47 +00:00
, protobuf
, qtfeedback
, qtmpris
2021-03-22 22:45:47 +00:00
, qtquickcontrols2
}:
mkDerivation rec {
pname = "plasma-dialer";
nativeBuildInputs = [
cmake
extra-cmake-modules
];
buildInputs = [
callaudiod
2021-03-22 22:45:47 +00:00
kcontacts
kcoreaddons
kdbusaddons
ki18n
kirigami2
knotifications
kpeople
libphonenumber
modemmanager-qt
2021-03-22 22:45:47 +00:00
protobuf # Needed by libphonenumber
qtfeedback
qtmpris
2021-03-22 22:45:47 +00:00
qtquickcontrols2
];
meta = with lib; {
description = "Dialer for Plasma Mobile";
homepage = "https://invent.kde.org/plasma-mobile/plasma-dialer";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ samueldr ];
};
}