3f9ac24d53
This reverts commit c6882b2cf9
.
50 lines
1.5 KiB
Nix
50 lines
1.5 KiB
Nix
{ stdenv, fetchurl, glib, udev, libgudev, polkit, ppp, gettext, pkgconfig
|
|
, libmbim, libqmi, systemd, vala, gobject-introspection, dbus }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "modem-manager";
|
|
version = "1.10.0";
|
|
|
|
package = "ModemManager";
|
|
src = fetchurl {
|
|
url = "https://www.freedesktop.org/software/${package}/${package}-${version}.tar.xz";
|
|
sha256 = "1qkfnxqvaraz1npahqvm5xc73mbxxic8msnsjmlwkni5c2ckj3zx";
|
|
};
|
|
|
|
nativeBuildInputs = [ vala gobject-introspection gettext pkgconfig ];
|
|
|
|
buildInputs = [ glib udev libgudev polkit ppp libmbim libqmi systemd ];
|
|
|
|
configureFlags = [
|
|
"--with-polkit"
|
|
"--with-udev-base-dir=${placeholder ''out''}/lib/udev"
|
|
"--with-dbus-sys-dir=${placeholder ''out''}/etc/dbus-1/system.d"
|
|
"--with-systemdsystemunitdir=${placeholder ''out''}/etc/systemd/system"
|
|
"--sysconfdir=/etc"
|
|
"--localstatedir=/var"
|
|
"--with-systemd-suspend-resume"
|
|
"--with-systemd-journal"
|
|
];
|
|
|
|
preCheck = ''
|
|
export G_TEST_DBUS_DAEMON="${dbus.daemon}/bin/dbus-daemon"
|
|
'';
|
|
|
|
doCheck = true;
|
|
|
|
postInstall = ''
|
|
# systemd in NixOS doesn't use `systemctl enable`, so we need to establish
|
|
# aliases ourselves.
|
|
ln -s $out/etc/systemd/system/ModemManager.service \
|
|
$out/etc/systemd/system/dbus-org.freedesktop.ModemManager1.service
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "WWAN modem manager, part of NetworkManager";
|
|
homepage = https://www.freedesktop.org/wiki/Software/ModemManager/;
|
|
license = licenses.gpl2Plus;
|
|
maintainers = [ ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|