2016-06-22 12:49:26 +01:00
|
|
|
{ stdenv, fetchurl, intltool, pkgconfig, dbus_glib
|
|
|
|
, systemd, libgudev, libnl, libuuid, polkit, gnutls, ppp, dhcp, iptables
|
|
|
|
, libgcrypt, dnsmasq, bluez5, readline
|
2015-12-15 15:06:58 +00:00
|
|
|
, gobjectIntrospection, modemmanager, openresolv, libndp, newt, libsoup
|
2016-03-21 16:04:49 +00:00
|
|
|
, ethtool, gnused, coreutils, file, inetutils }:
|
2011-01-03 18:01:10 +00:00
|
|
|
|
2011-09-10 20:23:26 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2016-06-22 01:40:18 +01:00
|
|
|
name = "network-manager-${version}";
|
|
|
|
pname = "NetworkManager";
|
|
|
|
major = "1.2";
|
|
|
|
version = "${major}.2";
|
2011-01-03 18:01:10 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2016-06-22 01:40:18 +01:00
|
|
|
url = "mirror://gnome/sources/${pname}/${major}/${pname}-${version}.tar.xz";
|
|
|
|
sha256 = "41d8082e027f58bb5fa4181f93742606ab99c659794a18e2823eff22df0eecd9";
|
2011-01-03 18:01:10 +00:00
|
|
|
};
|
|
|
|
|
2012-06-16 20:09:30 +01:00
|
|
|
preConfigure = ''
|
2016-03-21 16:04:49 +00:00
|
|
|
substituteInPlace configure --replace /usr/bin/uname ${coreutils}/bin/uname
|
|
|
|
substituteInPlace configure --replace /usr/bin/file ${file}/bin/file
|
|
|
|
substituteInPlace src/devices/nm-device.c --replace /usr/bin/ping ${inetutils}/bin/ping
|
2016-01-01 23:31:45 +00:00
|
|
|
substituteInPlace src/NetworkManagerUtils.c --replace /sbin/modprobe /run/current-system/sw/sbin/modprobe
|
2016-04-02 17:03:03 +01:00
|
|
|
substituteInPlace data/84-nm-drivers.rules \
|
|
|
|
--replace /bin/sh ${stdenv.shell}
|
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
|
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=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
|
|
|
|
2016-06-22 12:49:26 +01:00
|
|
|
buildInputs = [ systemd libgudev libnl libuuid polkit ppp libndp
|
|
|
|
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
|
|
|
|
2016-06-22 01:40:18 +01:00
|
|
|
preInstall = ''
|
|
|
|
installFlagsArray=( "sysconfdir=$out/etc" "localstatedir=$out/var" "runstatedir=$out/var/run" )
|
|
|
|
'';
|
2011-09-10 20:23:26 +01:00
|
|
|
|
2016-06-22 01:40:18 +01:00
|
|
|
postInstall = ''
|
|
|
|
mkdir -p $out/lib/NetworkManager
|
2014-02-12 11:29:18 +00:00
|
|
|
|
2016-06-22 01:40:18 +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
|
|
|
|
2016-06-22 01:40:18 +01:00
|
|
|
# rename to network-manager to be in style
|
|
|
|
mv $out/etc/systemd/system/NetworkManager.service $out/etc/systemd/system/network-manager.service
|
2014-11-27 11:09:17 +00:00
|
|
|
|
2016-06-22 01:40:18 +01: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 20:09:30 +01:00
|
|
|
|
2011-01-03 18:01:10 +00:00
|
|
|
meta = with stdenv.lib; {
|
2016-06-22 01:40:18 +01:00
|
|
|
homepage = http://projects.gnome.org/NetworkManager/;
|
2012-12-12 15:26:03 +00:00
|
|
|
description = "Network configuration and management tool";
|
2016-06-22 01:40:18 +01:00
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
maintainers = with maintainers; [ phreedom urkud rickynils domenkozar obadz ];
|
|
|
|
platforms = platforms.linux;
|
2011-01-03 18:01:10 +00:00
|
|
|
};
|
2011-01-03 19:10:01 +00:00
|
|
|
}
|