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
|
2012-06-16 21:09:30 +02:00
|
|
|
, libgcrypt, dnsmasq, avahi, bind, perl, substituteAll }:
|
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}";
|
2013-06-04 16:34:59 +02:00
|
|
|
version = "0.9.8.0";
|
2011-01-03 19:01:10 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2012-02-29 14:29:59 +01:00
|
|
|
url = "mirror://gnome/sources/NetworkManager/0.9/NetworkManager-${version}.tar.xz";
|
2013-06-04 16:34:59 +02:00
|
|
|
sha256 = "0sq9yvln0yjff1sgk483m98ca2x2sqk5vh4kmn382k9msvgbqrn3";
|
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
|
|
|
|
'';
|
|
|
|
|
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"
|
|
|
|
"--with-dhclient=${dhcp}/sbin/dhclient"
|
|
|
|
# Upstream prefers dhclient, so don't add dhcpcd to the closure
|
|
|
|
#"--with-dhcpcd=${dhcpcd}/sbin/dhcpcd"
|
|
|
|
"--with-dhcpcd=no"
|
|
|
|
"--with-iptables=${iptables}/sbin/iptables"
|
|
|
|
"--with-udev-dir=\${out}/lib/udev"
|
|
|
|
"--without-resolvconf"
|
|
|
|
"--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"
|
|
|
|
"--with-session-tracking=systemd" ];
|
2011-09-10 21:23:26 +02:00
|
|
|
|
2012-09-07 14:21:24 +02:00
|
|
|
buildInputs = [ wirelesstools udev libnl libuuid polkit ppp xz ];
|
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
|
|
|
|
2012-03-11 00:13:32 +01:00
|
|
|
patches =
|
|
|
|
[ ( substituteAll {
|
|
|
|
src = ./nixos-purity.patch;
|
2012-06-16 21:09:30 +02:00
|
|
|
inherit avahi dnsmasq ppp bind;
|
2012-03-11 00:13:32 +01:00
|
|
|
glibc = stdenv.gcc.libc;
|
|
|
|
})
|
|
|
|
];
|
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
|
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"'
|
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;
|
2012-08-01 11:49:56 +02:00
|
|
|
maintainers = with maintainers; [ phreedom urkud rickynils ];
|
2011-01-03 19:01:10 +01:00
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
2011-01-03 20:10:01 +01:00
|
|
|
}
|