2012-02-29 14:29:59 +01:00
|
|
|
{ stdenv, fetchurl, intltool, wirelesstools, pkgconfig, dbus_glib, xz
|
2011-09-14 17:50:01 +02:00
|
|
|
, udev, libnl1, libuuid, polkit, gnutls, ppp, dhcp, dhcpcd, iptables
|
2012-03-11 00:13:32 +01:00
|
|
|
, libgcrypt, dnsmasq, avahi, 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}";
|
2012-02-29 14:29:59 +01:00
|
|
|
version = "0.9.2.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";
|
|
|
|
sha256 = "1pvd49ji7mh8ww2rfbvq6hmmjms5mb7w10fr7ihgzqbg589zjyj3";
|
2011-01-03 19:01:10 +01: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"
|
|
|
|
"--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"
|
|
|
|
"--with-crypto=gnutls" "--disable-more-warnings" ];
|
|
|
|
|
2012-02-29 14:29:59 +01:00
|
|
|
buildInputs = [ wirelesstools udev libnl1 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 ];
|
|
|
|
|
|
|
|
buildNativeInputs = [ intltool pkgconfig ];
|
2011-09-13 21:27:41 +02:00
|
|
|
|
2012-03-11 00:13:32 +01:00
|
|
|
patches =
|
|
|
|
[ ( substituteAll {
|
|
|
|
src = ./nixos-purity.patch;
|
|
|
|
inherit avahi dnsmasq ppp;
|
|
|
|
glibc = stdenv.gcc.libc;
|
|
|
|
})
|
|
|
|
];
|
2011-09-10 21:23:26 +02:00
|
|
|
|
|
|
|
preInstall =
|
|
|
|
''
|
|
|
|
installFlagsArray=( "sysconfdir=$out/etc" "localstatedir=$out/var" )
|
|
|
|
'';
|
|
|
|
|
2011-01-03 19:01:10 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = http://projects.gnome.org/NetworkManager/;
|
|
|
|
description = "Network configuration and management in an easy way. Desktop environment independent.";
|
|
|
|
license = licenses.gpl2Plus;
|
2012-03-11 15:07:34 +01:00
|
|
|
maintainers = [ maintainers.phreedom maintainers.urkud ];
|
2011-01-03 19:01:10 +01:00
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
2011-01-03 20:10:01 +01:00
|
|
|
}
|