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

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

116 lines
2.2 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
, libsecret
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
, dbus
2019-11-11 21:23:01 +00:00
, vala
, wrapGAppsHook3
2021-05-08 13:45:03 +00:00
, xvfb-run
2021-03-14 04:38:21 +00:00
, gtk-doc
, docbook-xsl-nons
, docbook_xml_dtd_43
2022-09-23 12:49:31 +00:00
, docutils
2021-09-03 02:03:55 +00: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";
2024-06-30 00:43:39 +00:00
version = "46.3";
2019-11-01 10:30:25 +00:00
src = fetchFromGitLab {
2021-09-03 02:03:55 +00:00
domain = "gitlab.gnome.org";
owner = "GNOME";
2021-01-21 16:50:31 +00:00
repo = pname;
2022-09-23 12:49:31 +00:00
rev = "v${version}";
2022-07-22 14:29:41 +00:00
fetchSubmodules = true;
2024-06-30 00:43:39 +00:00
hash = "sha256-J1wuhAXPCvLWzPqMU4alVFFpHoCAzX3wVOP3Bw0wW/o=";
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
wrapGAppsHook3
2021-03-14 04:38:21 +00:00
gtk-doc
docbook-xsl-nons
docbook_xml_dtd_43
2022-09-23 12:49:31 +00:00
docutils
2019-11-01 10:30:25 +00:00
];
buildInputs = [
modemmanager
2021-01-21 16:50:31 +00:00
libhandy
libsecret
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 02:03:55 +00: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 02:03:55 +00:00
sofia_sip
2019-11-01 10:30:25 +00:00
];
nativeCheckInputs = [
2019-11-01 10:30:25 +00:00
dbus
2021-05-08 13:45:03 +00:00
xvfb-run
2019-11-01 10:30:25 +00:00
];
env.NIX_CFLAGS_COMPILE = "-I${glib.dev}/include/gio-unix-2.0";
2021-03-14 04:38:21 +00:00
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 02:03:55 +00: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 \
2022-11-21 02:03:50 +00:00
--config-file=${dbus}/share/dbus-1/session.conf \
2019-11-01 10:30:25 +00:00
meson test --print-errorlogs
runHook postCheck
'';
meta = with lib; {
2019-11-01 10:30:25 +00:00
description = "Phone dialer and call handler";
2021-07-27 15:13:37 +00:00
longDescription = "GNOME Calls is a phone dialer and call handler. Setting NixOS option `programs.calls.enable = true` is recommended.";
homepage = "https://gitlab.gnome.org/GNOME/calls";
2019-11-01 10:30:25 +00:00
license = licenses.gpl3Plus;
2024-06-21 11:41:50 +00:00
maintainers = with maintainers; [ craigem ];
2019-11-01 10:30:25 +00:00
platforms = platforms.linux;
2023-11-27 01:17:53 +00:00
mainProgram = "gnome-calls";
2019-11-01 10:30:25 +00:00
};
}