cb962e829c
* Add flags for systemd [0] * Enable tests Though I actually didn't look to see how they're performed, only effort done was to get a success- ful build. * Enable vala bindings [0]: https://gitlab.freedesktop.org/mobile-broadband/ModemManager/blob/1.8.0/NEWS#L21
52 lines
1.7 KiB
Nix
52 lines
1.7 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 = ''
|
|
# rename to modem-manager to be in style
|
|
mv $out/etc/systemd/system/ModemManager.service $out/etc/systemd/system/modem-manager.service
|
|
|
|
# systemd in NixOS doesn't use `systemctl enable`, so we need to establish
|
|
# aliases ourselves.
|
|
ln -s $out/etc/systemd/system/modem-manager.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;
|
|
};
|
|
}
|