nixpkgs/pkgs/tools/networking/modemmanager/default.nix
Artturin 8533260f17 modemmanager: enable strictDeps
checked with `diffing`
2024-02-05 22:52:54 +02:00

109 lines
2.3 KiB
Nix

{ lib
, stdenv
, fetchFromGitLab
, glib
, udev
, libgudev
, polkit
, ppp
, gettext
, pkg-config
, libxslt
, python3
, libmbim
, libqmi
, systemd
, bash-completion
, meson
, ninja
, vala
, gobject-introspection
, dbus
, bash
}:
stdenv.mkDerivation rec {
pname = "modemmanager";
version = "1.22.0";
src = fetchFromGitLab {
domain = "gitlab.freedesktop.org";
owner = "mobile-broadband";
repo = "ModemManager";
rev = version;
hash = "sha256-/D9b2rCCUhpDCUfSNAWR65+3EyUywzFdH1R17eSKRDo=";
};
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
];
strictDeps = true;
nativeBuildInputs = [
meson
ninja
vala
gobject-introspection
gettext
pkg-config
libxslt
python3
];
buildInputs = [
glib
udev
libgudev
polkit
ppp
libmbim
libqmi
systemd
bash-completion
dbus
bash # shebangs in share/ModemManager/fcc-unlock.available.d/
];
nativeInstallCheckInputs = [
python3
python3.pkgs.dbus-python
python3.pkgs.pygobject3
];
mesonFlags = [
"-Dudevdir=${placeholder "out"}/lib/udev"
"-Ddbus_policy_dir=${placeholder "out"}/share/dbus-1/system.d"
"--sysconfdir=/etc"
"--localstatedir=/var"
"-Dvapi=true"
];
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 = ''
export G_TEST_DBUS_DAEMON="${dbus}/bin/dbus-daemon"
patchShebangs tools/tests/test-wrapper.sh
'';
installCheckTarget = "check";
meta = with lib; {
description = "WWAN modem manager, part of NetworkManager";
homepage = "https://www.freedesktop.org/wiki/Software/ModemManager/";
license = licenses.gpl2Plus;
maintainers = teams.freedesktop.members;
platforms = platforms.linux;
};
}