nixpkgs/pkgs/tools/networking/modemmanager/default.nix

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

104 lines
2.2 KiB
Nix
Raw Normal View History

{ lib
, stdenv
, fetchFromGitLab
, glib
, udev
, libgudev
, polkit
, ppp
, gettext
, pkg-config
, libxslt
, python3
, libmbim
, libqmi
, systemd
, bash-completion
, meson
, ninja
, vala
, gobject-introspection
, dbus
2021-06-17 16:04:38 +00:00
}:
stdenv.mkDerivation rec {
2021-08-10 10:06:57 +00:00
pname = "modemmanager";
2023-03-05 16:49:18 +00:00
version = "1.20.6";
src = fetchFromGitLab {
domain = "gitlab.freedesktop.org";
owner = "mobile-broadband";
repo = "ModemManager";
rev = version;
2023-03-05 16:49:18 +00:00
hash = "sha256-/A4WTsUQVeZDi5ei6qBvqoWYLKdRcZaYZU8/qWOPrvM=";
};
patches = [
# Since /etc is the domain of NixOS, not Nix, we cannot install files there.
# But these are just placeholders so we do not need to install them at all.
./no-dummy-dirs-in-sysconfdir.patch
];
nativeBuildInputs = [
meson
ninja
vala
gobject-introspection
gettext
pkg-config
libxslt
];
buildInputs = [
glib
udev
libgudev
polkit
ppp
libmbim
libqmi
systemd
bash-completion
dbus
];
nativeInstallCheckInputs = [
python3
python3.pkgs.dbus-python
python3.pkgs.pygobject3
2021-06-17 16:04:38 +00:00
];
mesonFlags = [
"-Dudevdir=${placeholder "out"}/lib/udev"
"-Ddbus_policy_dir=${placeholder "out"}/share/dbus-1/system.d"
2015-03-26 20:12:50 +00:00
"--sysconfdir=/etc"
"--localstatedir=/var"
"-Dvapi=true"
2014-02-08 19:16:34 +00:00
];
2021-06-17 16:04:38 +00:00
postPatch = ''
patchShebangs \
tools/test-modemmanager-service.py
2021-06-17 16:04:38 +00:00
'';
# 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.
2022-10-14 13:12:49 +00:00
doInstallCheck = true;
2021-06-17 16:04:38 +00:00
preInstallCheck = ''
2022-11-21 02:03:50 +00:00
export G_TEST_DBUS_DAEMON="${dbus}/bin/dbus-daemon"
2021-06-17 16:04:38 +00:00
patchShebangs tools/tests/test-wrapper.sh
2015-03-26 20:12:50 +00:00
'';
2021-06-17 16:04:38 +00:00
installCheckTarget = "check";
2015-03-26 20:12:50 +00:00
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;
};
}