2012-02-29 13:29:59 +00:00
|
|
|
{ stdenv, fetchurl, intltool, wirelesstools, pkgconfig, dbus_glib, xz
|
2015-09-11 11:22:27 +01:00
|
|
|
, udev, libgudev, libnl, libuuid, polkit, gnutls, ppp, dhcp, dhcpcd, iptables
|
2015-04-08 16:45:41 +01:00
|
|
|
, libgcrypt, dnsmasq, avahi, bind, perl, bluez5, substituteAll, readline
|
2015-12-15 15:06:58 +00:00
|
|
|
, gobjectIntrospection, modemmanager, openresolv, libndp, newt, libsoup
|
|
|
|
, ethtool, gnused }:
|
2011-01-03 18:01:10 +00:00
|
|
|
|
2011-09-10 20:23:26 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2011-01-03 18:01:10 +00:00
|
|
|
name = "network-manager-${version}";
|
2015-09-28 12:22:02 +01:00
|
|
|
version = "1.0.6";
|
2011-01-03 18:01:10 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2015-04-08 16:45:41 +01:00
|
|
|
url = "mirror://gnome/sources/NetworkManager/1.0/NetworkManager-${version}.tar.xz";
|
2015-09-28 12:22:02 +01:00
|
|
|
sha256 = "38ea002403e3b884ffa9aae25aea431d2a8420f81f4919761c83fb92648254bd";
|
2011-01-03 18:01:10 +00:00
|
|
|
};
|
|
|
|
|
2012-06-16 20:09:30 +01:00
|
|
|
preConfigure = ''
|
|
|
|
substituteInPlace tools/glib-mkenums --replace /usr/bin/perl ${perl}/bin/perl
|
2016-01-01 23:31:45 +00:00
|
|
|
substituteInPlace src/NetworkManagerUtils.c --replace /sbin/modprobe /run/current-system/sw/sbin/modprobe
|
2015-12-15 15:06:58 +00:00
|
|
|
substituteInPlace data/85-nm-unmanaged.rules \
|
|
|
|
--replace /bin/sh ${stdenv.shell} \
|
|
|
|
--replace /usr/sbin/ethtool ${ethtool}/sbin/ethtool \
|
|
|
|
--replace /bin/sed ${gnused}/bin/sed
|
2016-02-26 02:28:56 +00:00
|
|
|
# to enable link-local connections
|
|
|
|
substituteInPlace src/devices/nm-device.c --replace '("avahi-autoipd", NULL, NULL)' '("avahi-autoipd", &"${avahi}/sbin/avahi-autoipd", NULL)'
|
2015-04-08 16:45:41 +01:00
|
|
|
configureFlags="$configureFlags --with-udev-dir=$out/lib/udev"
|
2012-06-16 20:09:30 +01:00
|
|
|
'';
|
|
|
|
|
2011-09-10 20:23:26 +01: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 = [
|
|
|
|
"--with-distro=exherbo"
|
2015-04-08 16:45:41 +01:00
|
|
|
"--with-dhclient=${dhcp}/bin/dhclient"
|
2015-08-29 23:47:42 +01:00
|
|
|
"--with-dnsmasq=${dnsmasq}/bin/dnsmasq"
|
2011-09-10 20:23:26 +01:00
|
|
|
# Upstream prefers dhclient, so don't add dhcpcd to the closure
|
|
|
|
#"--with-dhcpcd=${dhcpcd}/sbin/dhcpcd"
|
|
|
|
"--with-dhcpcd=no"
|
2015-04-08 16:45:41 +01:00
|
|
|
"--with-pppd=${ppp}/bin/pppd"
|
|
|
|
"--with-iptables=${iptables}/bin/iptables"
|
|
|
|
#"--with-udev-dir=$(out)/lib/udev"
|
2014-02-28 14:48:28 +00:00
|
|
|
"--with-resolvconf=${openresolv}/sbin/resolvconf"
|
2011-09-10 20:23:26 +01:00
|
|
|
"--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"
|
2013-01-03 17:14:38 +00:00
|
|
|
"--with-kernel-firmware-dir=/run/current-system/firmware"
|
2014-02-13 17:03:06 +00:00
|
|
|
"--with-session-tracking=systemd"
|
|
|
|
"--with-modem-manager-1"
|
2015-05-12 01:54:17 +01:00
|
|
|
"--with-nmtui"
|
2015-05-21 10:42:18 +01:00
|
|
|
"--with-libsoup=yes"
|
2014-02-13 17:03:06 +00:00
|
|
|
];
|
2011-09-10 20:23:26 +01:00
|
|
|
|
2015-09-11 11:22:27 +01:00
|
|
|
buildInputs = [ wirelesstools udev libgudev libnl libuuid polkit ppp libndp
|
2015-08-26 20:17:08 +01:00
|
|
|
xz bluez5 dnsmasq gobjectIntrospection modemmanager readline newt libsoup ];
|
2011-09-10 20:23:26 +01:00
|
|
|
|
2011-09-14 16:50:01 +01:00
|
|
|
propagatedBuildInputs = [ dbus_glib gnutls libgcrypt ];
|
|
|
|
|
2012-12-28 18:20:09 +00:00
|
|
|
nativeBuildInputs = [ intltool pkgconfig ];
|
2011-09-13 20:27:41 +01:00
|
|
|
|
2015-09-28 12:22:02 +01:00
|
|
|
patches = [ ./nm-platform.patch ];
|
|
|
|
|
2011-09-10 20:23:26 +01:00
|
|
|
preInstall =
|
|
|
|
''
|
|
|
|
installFlagsArray=( "sysconfdir=$out/etc" "localstatedir=$out/var" )
|
|
|
|
'';
|
|
|
|
|
2012-06-16 20:09:30 +01:00
|
|
|
postInstall =
|
|
|
|
''
|
|
|
|
mkdir -p $out/lib/NetworkManager
|
2014-02-12 11:29:18 +00:00
|
|
|
|
2013-07-26 22:09:50 +01: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"'
|
2013-10-03 13:45:25 +01:00
|
|
|
|
2014-11-27 11:09:17 +00:00
|
|
|
# rename to network-manager to be in style
|
|
|
|
mv $out/etc/systemd/system/NetworkManager.service $out/etc/systemd/system/network-manager.service
|
|
|
|
|
2014-02-12 11:29: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
|
2014-11-27 11:09:17 +00:00
|
|
|
ln -s $out/etc/systemd/system/network-manager.service $out/etc/systemd/system/dbus-org.freedesktop.NetworkManager.service
|
2012-06-16 20:09:30 +01:00
|
|
|
'';
|
|
|
|
|
2011-01-03 18:01:10 +00:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = http://projects.gnome.org/NetworkManager/;
|
2012-12-12 15:26:03 +00:00
|
|
|
description = "Network configuration and management tool";
|
2011-01-03 18:01:10 +00:00
|
|
|
license = licenses.gpl2Plus;
|
2014-01-03 12:39:27 +00:00
|
|
|
maintainers = with maintainers; [ phreedom urkud rickynils iElectric ];
|
2011-01-03 18:01:10 +00:00
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
2011-01-03 19:10:01 +00:00
|
|
|
}
|