nixpkgs/pkgs/applications/networking/calls/default.nix

80 lines
1.3 KiB
Nix
Raw Normal View History

2019-11-01 11:30:25 +01:00
{ stdenv
, fetchFromGitLab
, meson
, ninja
, pkgconfig
, libhandy
, modemmanager
, gtk3
2019-10-30 09:56:03 +01:00
, gom
2019-11-01 11:30:25 +01:00
, gsound
2019-10-30 09:56:03 +01:00
, evolution-data-server
, desktop-file-utils
2019-11-01 11:30:25 +01:00
, libpeas
, dbus
, xorg
, xvfb_run
, libxml2
}:
stdenv.mkDerivation rec {
2019-10-30 09:56:03 +01:00
pname = "calls-unstable";
version = "2019-10-09";
2019-11-01 11:30:25 +01:00
src = fetchFromGitLab {
domain = "source.puri.sm";
owner = "Librem5";
2019-11-11 21:44:31 +01:00
repo = "calls";
2019-10-30 09:56:03 +01:00
rev = "4b4cfa04266ebbe2f3da5abd9624ea07aa159fea";
sha256 = "0qvnddjpkh6gsywzdi24lmjlbwi0q54m1xa6hiaf1ch1j7kcv8fr";
2019-11-01 11:30:25 +01:00
};
nativeBuildInputs = [
meson
ninja
pkgconfig
2019-10-30 09:56:03 +01:00
desktop-file-utils
2019-11-01 11:30:25 +01:00
];
buildInputs = [
modemmanager
libhandy
2019-10-30 09:56:03 +01:00
evolution-data-server
gom
2019-11-01 11:30:25 +01:00
gsound
gtk3
libhandy
libpeas
libxml2
];
checkInputs = [
dbus
xvfb_run
xorg.xauth
];
mesonFlags = [
"-Dgtk_doc=false"
];
doCheck = true;
checkPhase = ''
runHook preCheck
NO_AT_BRIDGE=1 \
xvfb-run -s '-screen 0 800x600x24' dbus-run-session \
--config-file=${dbus.daemon}/share/dbus-1/session.conf \
meson test --print-errorlogs
runHook postCheck
'';
meta = with stdenv.lib; {
description = "A phone dialer and call handler";
homepage = https://source.puri.sm/Librem5/calls;
license = licenses.gpl3Plus;
maintainers = with maintainers; [ craigem lheckemann ];
platforms = platforms.linux;
};
}