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

86 lines
1.4 KiB
Nix
Raw Normal View History

2019-11-01 10:30:25 +00:00
{ stdenv
, fetchFromGitLab
, meson
, ninja
, pkgconfig
, libhandy
, modemmanager
, gtk3
2019-10-30 08:56:03 +00:00
, gom
2019-11-01 10:30:25 +00:00
, gsound
2019-10-30 08:56:03 +00:00
, evolution-data-server
2019-11-11 21:23:01 +00:00
, folks
2019-10-30 08:56:03 +00:00
, desktop-file-utils
2019-11-01 10:30:25 +00:00
, libpeas
, dbus
2019-11-11 21:23:01 +00:00
, vala
2020-01-09 14:19:10 +00:00
, wrapGAppsHook
2019-11-01 10:30:25 +00:00
, xorg
, xvfb_run
, libxml2
}:
stdenv.mkDerivation rec {
2019-11-11 21:23:01 +00:00
pname = "calls";
2020-02-26 05:00:05 +00:00
version = "0.1.2";
2019-11-01 10:30:25 +00:00
src = fetchFromGitLab {
domain = "source.puri.sm";
owner = "Librem5";
2019-11-11 20:44:31 +00:00
repo = "calls";
2020-01-09 14:19:10 +00:00
rev = "v${version}";
2020-02-26 05:00:05 +00:00
sha256 = "105r631a0rva1k1fa50lravsfk5dd3f0k3gfc7lvpn2jkd99s1g6";
2019-11-01 10:30:25 +00:00
};
nativeBuildInputs = [
meson
ninja
pkgconfig
2019-10-30 08:56:03 +00:00
desktop-file-utils
2019-11-11 21:23:01 +00:00
vala
2020-01-09 14:19:10 +00:00
wrapGAppsHook
2019-11-01 10:30:25 +00:00
];
buildInputs = [
modemmanager
libhandy
2019-10-30 08:56:03 +00:00
evolution-data-server
2019-11-11 21:23:01 +00:00
folks
2019-10-30 08:56:03 +00:00
gom
2019-11-01 10:30:25 +00:00
gsound
gtk3
libhandy
libpeas
];
checkInputs = [
dbus
xvfb_run
];
mesonFlags = [
2019-11-11 21:23:01 +00:00
# docs fail to build
# https://source.puri.sm/Librem5/calls/issues/99
2019-11-01 10:30:25 +00:00
"-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";
2020-02-26 05:00:05 +00:00
homepage = "https://source.puri.sm/Librem5/calls";
2019-11-01 10:30:25 +00:00
license = licenses.gpl3Plus;
maintainers = with maintainers; [ craigem lheckemann ];
platforms = platforms.linux;
};
}