9b50ebd825
svn path=/nixpkgs/trunk/; revision=25367
26 lines
1.1 KiB
Nix
26 lines
1.1 KiB
Nix
{ stdenv, fetchurl, intltool, wirelesstools, pkgconfig, dbus, dbus_glib, udev, libnl1, libuuid, polkit, gnutls, ppp, dhcp, iptables }:
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "network-manager-${version}";
|
|
version = "0.8.1";
|
|
|
|
src = fetchurl {
|
|
url = "http://ftp.gnome.org/pub/GNOME/sources/NetworkManager/0.8/NetworkManager-${version}.tar.bz2";
|
|
sha256 = "1yhr1zc9p2dakvg6m33jgkf09r6f6bzly7kqqjcpim4r66z6y4nw";
|
|
};
|
|
|
|
configureFlags = [ "--with-distro=gentoo" "--with-dhclient=${dhcp}/sbin"
|
|
"--with-dhcpcd=${dhcp}/sbin" "--with-iptables=${iptables}/sbin/iptables"
|
|
"--with-crypto=gnutls" "--disable-more-warnings"
|
|
"--with-udev-dir=\${out}/lib/udev" ];
|
|
|
|
buildInputs = [ intltool wirelesstools pkgconfig dbus dbus_glib udev libnl1 libuuid polkit gnutls ppp ];
|
|
|
|
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;
|
|
maintainers = [ maintainers.phreedom ];
|
|
platforms = platforms.linux;
|
|
};
|
|
} |