2021-07-13 18:50:58 +03:00
|
|
|
{ lib, stdenv, fetchurl
|
2021-06-17 19:04:38 +03:00
|
|
|
, glib, udev, libgudev, polkit, ppp, gettext, pkg-config, python3
|
|
|
|
, libmbim, libqmi, systemd, vala, gobject-introspection, dbus
|
|
|
|
}:
|
2012-01-04 13:05:22 +04:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-03-15 20:15:24 +03:00
|
|
|
pname = "modem-manager";
|
2021-07-13 18:50:58 +03:00
|
|
|
version = "1.16.8";
|
2012-01-04 13:05:22 +04:00
|
|
|
|
2014-02-08 23:16:34 +04:00
|
|
|
src = fetchurl {
|
2021-06-17 19:04:38 +03:00
|
|
|
url = "https://www.freedesktop.org/software/ModemManager/ModemManager-${version}.tar.xz";
|
2021-07-13 18:50:58 +03:00
|
|
|
sha256 = "sha256-If36+UFxJhrZ2ZdxiU9a3kvDnvPR/x1CEFTRRxPpeIA=";
|
2012-01-04 13:05:22 +04:00
|
|
|
};
|
|
|
|
|
2021-01-17 06:51:22 +03:00
|
|
|
nativeBuildInputs = [ vala gobject-introspection gettext pkg-config ];
|
2012-01-04 13:05:22 +04:00
|
|
|
|
2018-08-12 02:42:24 +03:00
|
|
|
buildInputs = [ glib udev libgudev polkit ppp libmbim libqmi systemd ];
|
2018-03-23 12:04:24 +03:00
|
|
|
|
2021-06-17 19:04:38 +03:00
|
|
|
installCheckInputs = [
|
|
|
|
python3 python3.pkgs.dbus-python python3.pkgs.pygobject3
|
|
|
|
];
|
|
|
|
|
2014-02-08 23:16:34 +04:00
|
|
|
configureFlags = [
|
|
|
|
"--with-polkit"
|
2019-09-03 19:38:57 +03:00
|
|
|
"--with-udev-base-dir=${placeholder "out"}/lib/udev"
|
2019-09-07 23:26:56 +03:00
|
|
|
"--with-dbus-sys-dir=${placeholder "out"}/share/dbus-1/system.d"
|
2019-09-03 19:38:57 +03:00
|
|
|
"--with-systemdsystemunitdir=${placeholder "out"}/etc/systemd/system"
|
2015-03-26 23:12:50 +03:00
|
|
|
"--sysconfdir=/etc"
|
|
|
|
"--localstatedir=/var"
|
2019-03-15 20:15:24 +03:00
|
|
|
"--with-systemd-suspend-resume"
|
|
|
|
"--with-systemd-journal"
|
2014-02-08 23:16:34 +04:00
|
|
|
];
|
2012-01-04 13:05:22 +04:00
|
|
|
|
2021-06-17 19:04:38 +03: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;
|
|
|
|
preInstallCheck = ''
|
2019-03-15 20:15:24 +03:00
|
|
|
export G_TEST_DBUS_DAEMON="${dbus.daemon}/bin/dbus-daemon"
|
2021-06-17 19:04:38 +03:00
|
|
|
patchShebangs tools/tests/test-wrapper.sh
|
2015-03-26 23:12:50 +03:00
|
|
|
'';
|
2021-06-17 19:04:38 +03:00
|
|
|
installCheckTarget = "check";
|
2015-03-26 23:12:50 +03:00
|
|
|
|
2020-04-19 14:41:32 +03:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2021-01-11 10:54:33 +03:00
|
|
|
meta = with lib; {
|
2012-01-04 13:05:22 +04:00
|
|
|
description = "WWAN modem manager, part of NetworkManager";
|
2020-03-02 18:12:42 +03:00
|
|
|
homepage = "https://www.freedesktop.org/wiki/Software/ModemManager/";
|
2018-03-14 00:37:13 +03:00
|
|
|
license = licenses.gpl2Plus;
|
2021-06-17 22:24:21 +03:00
|
|
|
maintainers = teams.freedesktop.members;
|
2018-03-14 00:37:13 +03:00
|
|
|
platforms = platforms.linux;
|
2012-01-04 13:05:22 +04:00
|
|
|
};
|
|
|
|
}
|