nixpkgs/pkgs/tools/networking/network-manager/default.nix

115 lines
4.6 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, intltool, pkgconfig, dbus-glib
2016-06-22 11:49:26 +00:00
, systemd, libgudev, libnl, libuuid, polkit, gnutls, ppp, dhcp, iptables
, libgcrypt, dnsmasq, bluez5, readline
, gobjectIntrospection, modemmanager, openresolv, libndp, newt, libsoup
2017-04-04 12:16:59 +00:00
, ethtool, iputils, gnused, coreutils, file, inetutils, kmod, jansson, libxslt
2017-09-14 13:53:39 +00:00
, python3Packages, docbook_xsl, fetchpatch, openconnect, curl, autoreconfHook }:
stdenv.mkDerivation rec {
2016-06-22 00:40:18 +00:00
name = "network-manager-${version}";
pname = "NetworkManager";
2017-11-11 05:11:44 +00:00
major = "1.10";
2018-01-27 12:03:09 +00:00
version = "${major}.2";
src = fetchurl {
2016-06-22 00:40:18 +00:00
url = "mirror://gnome/sources/${pname}/${major}/${pname}-${version}.tar.xz";
2018-01-27 12:03:09 +00:00
sha256 = "0nv2jm2lsidlrzn4dkbc5rpj8ma4cpzjqz8z8dmwkqvh0zsk970n";
};
2016-11-15 13:15:04 +00:00
outputs = [ "out" "dev" ];
2017-04-04 12:16:59 +00:00
postPatch = ''
patchShebangs ./tools
'';
2012-06-16 19:09:30 +00:00
preConfigure = ''
substituteInPlace configure --replace /usr/bin/uname ${coreutils}/bin/uname
substituteInPlace configure --replace /usr/bin/file ${file}/bin/file
2017-04-04 12:16:59 +00:00
substituteInPlace src/devices/nm-device.c \
--replace /usr/bin/ping ${inetutils}/bin/ping \
--replace /usr/bin/ping6 ${inetutils}/bin/ping
substituteInPlace src/devices/nm-arping-manager.c \
2017-06-23 04:33:57 +00:00
--replace '("arping", NULL, NULL);' '("arping", "${iputils}/bin/arping", NULL);'
substituteInPlace data/84-nm-drivers.rules \
--replace /bin/sh ${stdenv.shell}
substituteInPlace data/85-nm-unmanaged.rules \
--replace /bin/sh ${stdenv.shell} \
--replace /usr/sbin/ethtool ${ethtool}/sbin/ethtool \
--replace /bin/sed ${gnused}/bin/sed
substituteInPlace data/NetworkManager.service.in \
--replace /bin/kill ${coreutils}/bin/kill
substituteInPlace clients/common/nm-vpn-helpers.c \
--subst-var-by openconnect ${openconnect}
substituteInPlace src/nm-core-utils.c \
--subst-var-by modprobeBinPath ${kmod}/bin/modprobe
# to enable link-local connections
2015-04-08 15:45:41 +00:00
configureFlags="$configureFlags --with-udev-dir=$out/lib/udev"
2017-09-14 13:53:39 +00:00
# Fixes: error: po/Makefile.in.in was not created by intltoolize.
intltoolize --automake --copy --force
2012-06-16 19:09:30 +00:00
'';
# Right now we hardcode quite a few paths at build time. Probably we should
# patch networkmanager to allow passing these path in config file. This will
# remove unneeded build-time dependencies.
configureFlags = [
2015-04-08 15:45:41 +00:00
"--with-dhclient=${dhcp}/bin/dhclient"
"--with-dnsmasq=${dnsmasq}/bin/dnsmasq"
# Upstream prefers dhclient, so don't add dhcpcd to the closure
"--with-dhcpcd=no"
2015-04-08 15:45:41 +00:00
"--with-pppd=${ppp}/bin/pppd"
"--with-iptables=${iptables}/bin/iptables"
#"--with-udev-dir=$(out)/lib/udev"
"--with-resolvconf=${openresolv}/sbin/resolvconf"
"--sysconfdir=/etc" "--localstatedir=/var"
"--with-dbus-sys-dir=\${out}/etc/dbus-1/system.d"
2013-01-03 12:03:50 +00:00
"--with-crypto=gnutls" "--disable-more-warnings"
"--with-systemdsystemunitdir=$(out)/etc/systemd/system"
"--with-kernel-firmware-dir=/run/current-system/firmware"
"--with-session-tracking=systemd"
"--with-modem-manager-1"
"--with-nmtui"
2017-09-14 13:53:39 +00:00
"--disable-gtk-doc"
];
2017-04-04 12:16:59 +00:00
patches = [
./PppdPath.patch
./openconnect_helper_path.patch
./modprobe.patch
2017-04-04 12:16:59 +00:00
];
2017-09-14 13:53:39 +00:00
buildInputs = [ systemd libgudev libnl libuuid polkit ppp libndp curl
2017-04-04 12:16:59 +00:00
bluez5 dnsmasq gobjectIntrospection modemmanager readline newt libsoup jansson ];
propagatedBuildInputs = [ dbus-glib gnutls libgcrypt python3Packages.pygobject3 ];
2017-09-14 13:53:39 +00:00
nativeBuildInputs = [ autoreconfHook intltool pkgconfig libxslt docbook_xsl ];
2016-06-22 00:40:18 +00:00
preInstall = ''
installFlagsArray=( "sysconfdir=$out/etc" "localstatedir=$out/var" "runstatedir=$out/var/run" )
'';
2016-06-22 00:40:18 +00:00
postInstall = ''
mkdir -p $out/lib/NetworkManager
2016-06-22 00:40:18 +00:00
# FIXME: Workaround until NixOS' dbus+systemd supports at_console policy
substituteInPlace $out/etc/dbus-1/system.d/org.freedesktop.NetworkManager.conf --replace 'at_console="true"' 'group="networkmanager"'
2016-06-22 00:40:18 +00:00
# rename to network-manager to be in style
2017-04-04 12:16:59 +00:00
mv $out/etc/systemd/system/NetworkManager.service $out/etc/systemd/system/network-manager.service
2016-06-22 00:40:18 +00:00
# systemd in NixOS doesn't use `systemctl enable`, so we need to establish
# aliases ourselves.
ln -s $out/etc/systemd/system/NetworkManager-dispatcher.service $out/etc/systemd/system/dbus-org.freedesktop.nm-dispatcher.service
ln -s $out/etc/systemd/system/network-manager.service $out/etc/systemd/system/dbus-org.freedesktop.NetworkManager.service
'';
2012-06-16 19:09:30 +00:00
meta = with stdenv.lib; {
2016-06-22 00:40:18 +00:00
homepage = http://projects.gnome.org/NetworkManager/;
description = "Network configuration and management tool";
2016-06-22 00:40:18 +00:00
license = licenses.gpl2Plus;
maintainers = with maintainers; [ phreedom rickynils domenkozar obadz ];
2016-06-22 00:40:18 +00:00
platforms = platforms.linux;
};
}