mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
55 lines
853 B
Nix
55 lines
853 B
Nix
{ lib
|
|
, mkDerivation
|
|
|
|
, cmake
|
|
, extra-cmake-modules
|
|
|
|
, kcontacts
|
|
, kcoreaddons
|
|
, kdbusaddons
|
|
, ki18n
|
|
, kirigami2
|
|
, knotifications
|
|
, kpeople
|
|
, libphonenumber
|
|
, libpulseaudio
|
|
, libqofono
|
|
, protobuf
|
|
, pulseaudio-qt
|
|
, qtquickcontrols2
|
|
, telepathy
|
|
}:
|
|
|
|
mkDerivation rec {
|
|
pname = "plasma-dialer";
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
extra-cmake-modules
|
|
];
|
|
|
|
buildInputs = [
|
|
kcontacts
|
|
kcoreaddons
|
|
kdbusaddons
|
|
ki18n
|
|
kirigami2
|
|
knotifications
|
|
kpeople
|
|
libphonenumber
|
|
libpulseaudio
|
|
libqofono
|
|
protobuf # Needed by libphonenumber
|
|
pulseaudio-qt
|
|
qtquickcontrols2
|
|
telepathy
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Dialer for Plasma Mobile";
|
|
homepage = "https://invent.kde.org/plasma-mobile/plasma-dialer";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ samueldr ];
|
|
};
|
|
}
|