3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/networking/calls/default.nix

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

112 lines
2.1 KiB
Nix
Raw Normal View History

2021-01-21 16:50:31 +00:00
{ lib
, stdenv
2019-11-01 10:30:25 +00:00
, fetchFromGitLab
, meson
, ninja
, pkg-config
2021-01-21 16:50:31 +00:00
, libhandy
2019-11-01 10:30:25 +00:00
, modemmanager
, gtk3
2019-10-30 08:56:03 +00:00
, gom
2019-11-01 10:30:25 +00:00
, gsound
2021-01-21 16:50:31 +00:00
, feedbackd
, callaudiod
2019-10-30 08:56:03 +00:00
, evolution-data-server
2021-03-14 04:38:21 +00:00
, glib
2019-11-11 21:23:01 +00:00
, folks
2019-10-30 08:56:03 +00:00
, desktop-file-utils
2021-03-14 04:37:28 +00:00
, appstream-glib
2019-11-01 10:30:25 +00:00
, libpeas
2021-04-28 03:03:44 +01:00
, libgdata
2019-11-01 10:30:25 +00:00
, dbus
2019-11-11 21:23:01 +00:00
, vala
2020-01-09 14:19:10 +00:00
, wrapGAppsHook
2021-05-08 14:45:03 +01:00
, xvfb-run
2021-03-14 04:38:21 +00:00
, gtk-doc
, docbook-xsl-nons
, docbook_xml_dtd_43
, gobject-introspection
2021-09-03 03:03:55 +01:00
, gst_all_1
, sofia_sip
2019-11-01 10:30:25 +00:00
}:
stdenv.mkDerivation rec {
2019-11-11 21:23:01 +00:00
pname = "calls";
2021-09-03 03:03:55 +01:00
version = "41.1";
2019-11-01 10:30:25 +00:00
src = fetchFromGitLab {
2021-09-03 03:03:55 +01:00
domain = "gitlab.gnome.org";
owner = "GNOME";
2021-01-21 16:50:31 +00:00
repo = pname;
2021-09-03 03:03:55 +01:00
rev = version;
sha256 = "1vbw9x5s3ww11f3lnqivc74rjlmi9fk1hzaq1idrdcck3gvif0h8";
2019-11-01 10:30:25 +00:00
};
2021-03-14 04:38:21 +00:00
outputs = [ "out" "devdoc" ];
2019-11-01 10:30:25 +00:00
nativeBuildInputs = [
meson
ninja
pkg-config
2019-10-30 08:56:03 +00:00
desktop-file-utils
2021-03-14 04:37:28 +00:00
appstream-glib
2019-11-11 21:23:01 +00:00
vala
2020-01-09 14:19:10 +00:00
wrapGAppsHook
2021-03-14 04:38:21 +00:00
gtk-doc
docbook-xsl-nons
docbook_xml_dtd_43
2019-11-01 10:30:25 +00:00
];
buildInputs = [
modemmanager
2021-01-21 16:50:31 +00:00
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
2021-09-03 03:03:55 +01:00
gst_all_1.gstreamer
gst_all_1.gst-plugins-base
gst_all_1.gst-plugins-good
gst_all_1.gst-plugins-bad
gst_all_1.gst-plugins-ugly
2021-01-21 16:50:31 +00:00
feedbackd
callaudiod
2019-11-01 10:30:25 +00:00
gtk3
libpeas
2021-09-03 03:03:55 +01:00
sofia_sip
2019-11-01 10:30:25 +00:00
];
checkInputs = [
dbus
2021-05-08 14:45:03 +01:00
xvfb-run
2019-11-01 10:30:25 +00:00
];
2021-03-14 04:38:21 +00:00
NIX_CFLAGS_COMPILE = "-I${glib.dev}/include/gio-unix-2.0";
2019-11-01 10:30:25 +00:00
mesonFlags = [
2021-03-14 04:38:21 +00:00
"-Dgtk_doc=true"
2019-11-01 10:30:25 +00:00
];
2021-09-03 03:03:55 +01:00
# Disable until tests are fixed upstream https://gitlab.gnome.org/GNOME/calls/-/issues/258
doCheck = false;
2019-11-01 10:30:25 +00:00
checkPhase = ''
runHook preCheck
NO_AT_BRIDGE=1 \
2021-03-14 04:37:28 +00:00
XDG_DATA_DIRS=${folks}/share/gsettings-schemas/${folks.name} \
2019-11-01 10:30:25 +00:00
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 lib; {
2019-11-01 10:30:25 +00:00
description = "A phone dialer and call handler";
2021-07-27 16:13:37 +01:00
longDescription = "GNOME Calls is a phone dialer and call handler. Setting NixOS option `programs.calls.enable = true` is recommended.";
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 tomfitzhenry ];
2019-11-01 10:30:25 +00:00
platforms = platforms.linux;
};
}