2012-02-29 14:29:59 +01:00
|
|
|
{ stdenv, fetchurl, intltool, wirelesstools, pkgconfig, dbus_glib, xz
|
2012-09-07 14:21:24 +02:00
|
|
|
, udev, libnl, libuuid, polkit, gnutls, ppp, dhcp, dhcpcd, iptables
|
2015-04-08 17:45:41 +02:00
|
|
|
, libgcrypt, dnsmasq, avahi, bind, perl, bluez5, substituteAll, readline
|
|
|
|
, gobjectIntrospection, modemmanager, openresolv, libndp }:
|
2011-01-03 19:01:10 +01:00
|
|
|
|
2011-09-10 21:23:26 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2011-01-03 19:01:10 +01:00
|
|
|
name = "network-manager-${version}";
|
2015-04-08 17:45:41 +02:00
|
|
|
version = "1.0.0";
|
2011-01-03 19:01:10 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2015-04-08 17:45:41 +02:00
|
|
|
url = "mirror://gnome/sources/NetworkManager/1.0/NetworkManager-${version}.tar.xz";
|
|
|
|
sha256 = "0isrv1875whysnrf3fd1cz96xwd54nvj1rijk3fmx5qccznayris";
|
2011-01-03 19:01:10 +01:00
|
|
|
};
|
|
|
|
|
2012-06-16 21:09:30 +02:00
|
|
|
preConfigure = ''
|
|
|
|
substituteInPlace tools/glib-mkenums --replace /usr/bin/perl ${perl}/bin/perl
|
2015-04-08 17:45:41 +02:00
|
|
|
substituteInPlace src/ppp-manager/nm-ppp-manager.c --replace /sbin/modprobe /run/current-system/sw/sbin/modprobe
|
|
|
|
substituteInPlace src/devices/nm-device.c --replace /sbin/modprobe /run/current-system/sw/sbin/modprobe
|
|
|
|
configureFlags="$configureFlags --with-udev-dir=$out/lib/udev"
|
2012-06-16 21:09:30 +02:00
|
|
|
'';
|
|
|
|
|
2011-09-10 21:23:26 +02: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 17:45:41 +02:00
|
|
|
"--with-dhclient=${dhcp}/bin/dhclient"
|
2011-09-10 21:23:26 +02:00
|
|
|
# Upstream prefers dhclient, so don't add dhcpcd to the closure
|
|
|
|
#"--with-dhcpcd=${dhcpcd}/sbin/dhcpcd"
|
|
|
|
"--with-dhcpcd=no"
|
2015-04-08 17:45:41 +02:00
|
|
|
"--with-pppd=${ppp}/bin/pppd"
|
|
|
|
"--with-iptables=${iptables}/bin/iptables"
|
|
|
|
#"--with-udev-dir=$(out)/lib/udev"
|
2014-02-28 15:48:28 +01:00
|
|
|
"--with-resolvconf=${openresolv}/sbin/resolvconf"
|
2011-09-10 21:23:26 +02:00
|
|
|
"--sysconfdir=/etc" "--localstatedir=/var"
|
|
|
|
"--with-dbus-sys-dir=\${out}/etc/dbus-1/system.d"
|
2013-01-03 13:03:50 +01:00
|
|
|
"--with-crypto=gnutls" "--disable-more-warnings"
|
|
|
|
"--with-systemdsystemunitdir=$(out)/etc/systemd/system"
|
2013-01-03 18:14:38 +01:00
|
|
|
"--with-kernel-firmware-dir=/run/current-system/firmware"
|
2014-02-13 18:03:06 +01:00
|
|
|
"--with-session-tracking=systemd"
|
|
|
|
"--with-modem-manager-1"
|
|
|
|
];
|
2011-09-10 21:23:26 +02:00
|
|
|
|
2015-04-08 17:45:41 +02:00
|
|
|
buildInputs = [ wirelesstools udev libnl libuuid polkit ppp libndp
|
|
|
|
xz bluez5 gobjectIntrospection modemmanager readline ];
|
2011-09-10 21:23:26 +02:00
|
|
|
|
2011-09-14 17:50:01 +02:00
|
|
|
propagatedBuildInputs = [ dbus_glib gnutls libgcrypt ];
|
|
|
|
|
2012-12-28 19:20:09 +01:00
|
|
|
nativeBuildInputs = [ intltool pkgconfig ];
|
2011-09-13 21:27:41 +02:00
|
|
|
|
2011-09-10 21:23:26 +02:00
|
|
|
preInstall =
|
|
|
|
''
|
|
|
|
installFlagsArray=( "sysconfdir=$out/etc" "localstatedir=$out/var" )
|
|
|
|
'';
|
|
|
|
|
2012-06-16 21:09:30 +02:00
|
|
|
postInstall =
|
|
|
|
''
|
|
|
|
mkdir -p $out/lib/NetworkManager
|
2014-02-12 12:29:18 +01:00
|
|
|
|
2013-07-26 23:09:50 +02: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 14:45:25 +02:00
|
|
|
|
2014-11-27 12:09:17 +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-02-12 12:29: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
|
2014-11-27 12:09:17 +01:00
|
|
|
ln -s $out/etc/systemd/system/network-manager.service $out/etc/systemd/system/dbus-org.freedesktop.NetworkManager.service
|
2012-06-16 21:09:30 +02:00
|
|
|
'';
|
|
|
|
|
2011-01-03 19:01:10 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = http://projects.gnome.org/NetworkManager/;
|
2012-12-12 16:26:03 +01:00
|
|
|
description = "Network configuration and management tool";
|
2011-01-03 19:01:10 +01:00
|
|
|
license = licenses.gpl2Plus;
|
2014-01-03 13:39:27 +01:00
|
|
|
maintainers = with maintainers; [ phreedom urkud rickynils iElectric ];
|
2011-01-03 19:01:10 +01:00
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
2011-01-03 20:10:01 +01:00
|
|
|
}
|