forked from mirrors/nixpkgs
plasma-dialer: init at 21.05
This commit is contained in:
parent
0acc8547bc
commit
211cba432a
|
@ -66,6 +66,7 @@ let
|
|||
kalk = callPackage ./kalk.nix {};
|
||||
kclock = callPackage ./kclock.nix {};
|
||||
krecorder = callPackage ./krecorder.nix {};
|
||||
plasma-dialer = callPackage ./plasma-dialer.nix {};
|
||||
};
|
||||
|
||||
in lib.makeScope libsForQt5.newScope packages
|
||||
|
|
54
pkgs/applications/plasma-mobile/plasma-dialer.nix
Normal file
54
pkgs/applications/plasma-mobile/plasma-dialer.nix
Normal file
|
@ -0,0 +1,54 @@
|
|||
{ 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 ];
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue