mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 23:36:17 +01:00
c6882b2cf9
This is in line with NetworkManager.service being renamed to network-manager.service fixes #30452
64 lines
2 KiB
Nix
64 lines
2 KiB
Nix
{ stdenv, fetchurl, udev, libgudev, polkit, dbus-glib, ppp, gettext, pkgconfig
|
|
, libmbim, libqmi, systemd, fetchpatch }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "modem-manager-${version}";
|
|
pname = "ModemManager";
|
|
version = "1.7.990";
|
|
|
|
src = fetchurl {
|
|
url = "http://www.freedesktop.org/software/${pname}/${pname}-${version}.tar.xz";
|
|
sha256 = "1v4hixmghlrw7w4ajq2x4k62js0594h223d0yma365zwqr7hjrfl";
|
|
};
|
|
|
|
nativeBuildInputs = [ gettext pkgconfig ];
|
|
|
|
buildInputs = [ udev libgudev polkit dbus-glib ppp libmbim libqmi systemd ];
|
|
|
|
patches = [
|
|
# Patch dependency on glib headers, this breaks packages using core headers (networkmanager-qt)
|
|
(fetchpatch {
|
|
url = "https://cgit.freedesktop.org/ModemManager/ModemManager/patch/?id=0f377f943eeb81472fd73189f2c3d8fc65b8c609";
|
|
sha256 = "0av0sqdvbhwjnhqqylkc7rmqcj6awqmz5693l9x93nlwp7zya95j";
|
|
})
|
|
];
|
|
|
|
configureFlags = [
|
|
"--with-polkit"
|
|
"--with-udev-base-dir=$(out)/lib/udev"
|
|
"--with-systemdsystemunitdir=$(out)/etc/systemd/system"
|
|
"--sysconfdir=/etc"
|
|
"--localstatedir=/var"
|
|
"--with-suspend-resume=systemd"
|
|
];
|
|
|
|
installFlags = [ "DESTDIR=\${out}" ];
|
|
|
|
preInstall = ''
|
|
mkdir -p $out/etc/systemd/system
|
|
'';
|
|
|
|
postInstall = ''
|
|
# rename to modem-manager to be in style
|
|
mv $out/$out/etc/systemd/system/ModemManager.service $out/etc/systemd/system/modem-manager.service
|
|
rm -rf $out/$out/etc
|
|
mv $out/$out/* $out
|
|
DIR=$out/$out
|
|
while rmdir $DIR 2>/dev/null; do
|
|
DIR="$(dirname "$DIR")"
|
|
done
|
|
|
|
# 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;
|
|
};
|
|
}
|