3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/networking/modemmanager/default.nix

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

74 lines
2.5 KiB
Nix
Raw Normal View History

2021-07-13 16:50:58 +01:00
{ lib, stdenv, fetchurl
, fetchpatch
2021-06-17 17:04:38 +01:00
, glib, udev, libgudev, polkit, ppp, gettext, pkg-config, python3
, libmbim, libqmi, systemd, vala, gobject-introspection, dbus
}:
stdenv.mkDerivation rec {
2021-08-10 11:06:57 +01:00
pname = "modemmanager";
version = "1.18.10";
2014-02-08 19:16:34 +00:00
src = fetchurl {
2021-06-17 17:04:38 +01:00
url = "https://www.freedesktop.org/software/ModemManager/ModemManager-${version}.tar.xz";
sha256 = "sha256-FiVfginu6y3+y43RNwNg1G8QFeyF5vulwcvZ9DcdZes=";
};
patches = [
# Fix tests with GLib 2.73.2
# https://gitlab.freedesktop.org/mobile-broadband/ModemManager/-/issues/601
(fetchpatch {
url = "https://gitlab.freedesktop.org/mobile-broadband/ModemManager/-/commit/79a5a4eed2189ea87d25cbe00bc824a2572cad66.patch";
sha256 = "egGXkCzAMyqPjeO6ro23sdTddTDEGJUkV7rH8sSlSGE=";
})
(fetchpatch {
url = "https://gitlab.freedesktop.org/mobile-broadband/ModemManager/-/commit/51a333cd9a6707de7c623fd4c94cb6032477572f.patch";
sha256 = "1XyJ0GBmpBRwnsKPI4i/EBrF7W08HelL/PMDwmlQWcw=";
})
];
2021-01-17 03:51:22 +00:00
nativeBuildInputs = [ vala gobject-introspection gettext pkg-config ];
buildInputs = [ glib udev libgudev polkit ppp libmbim libqmi systemd ];
2021-06-17 17:04:38 +01:00
installCheckInputs = [
python3 python3.pkgs.dbus-python python3.pkgs.pygobject3
];
2014-02-08 19:16:34 +00:00
configureFlags = [
"--with-polkit"
"--with-udev-base-dir=${placeholder "out"}/lib/udev"
"--with-dbus-sys-dir=${placeholder "out"}/share/dbus-1/system.d"
"--with-systemdsystemunitdir=${placeholder "out"}/etc/systemd/system"
2015-03-26 20:12:50 +00:00
"--sysconfdir=/etc"
"--localstatedir=/var"
"--with-systemd-suspend-resume"
"--with-systemd-journal"
2014-02-08 19:16:34 +00:00
];
2021-06-17 17:04:38 +01:00
postPatch = ''
patchShebangs tools/test-modemmanager-service.py
'';
# In Nixpkgs g-ir-scanner is patched to produce absolute paths, and
# that interferes with ModemManager's tests, causing them to try to
# load libraries from the install path, which doesn't usually exist
# when `make check' is run. So to work around that, we run it as an
# install check instead, when those paths will have been created.
doInstallCheck = true;
2021-06-17 17:04:38 +01:00
preInstallCheck = ''
export G_TEST_DBUS_DAEMON="${dbus.daemon}/bin/dbus-daemon"
2021-06-17 17:04:38 +01:00
patchShebangs tools/tests/test-wrapper.sh
2015-03-26 20:12:50 +00:00
'';
2021-06-17 17:04:38 +01:00
installCheckTarget = "check";
2015-03-26 20:12:50 +00:00
enableParallelBuilding = true;
meta = with lib; {
description = "WWAN modem manager, part of NetworkManager";
2020-03-02 15:12:42 +00:00
homepage = "https://www.freedesktop.org/wiki/Software/ModemManager/";
2018-03-13 21:37:13 +00:00
license = licenses.gpl2Plus;
maintainers = teams.freedesktop.members;
2018-03-13 21:37:13 +00:00
platforms = platforms.linux;
};
}