* Sync with the trunk.

svn path=/nixpkgs/branches/modular-python/; revision=26586
This commit is contained in:
Eelco Dolstra
2011-03-28 20:22:30 +00:00
325 changed files with 3001 additions and 1444 deletions
+3 -3
View File
@@ -10,9 +10,9 @@ diff --exclude '*~' -rc dhcp-4.1.0p1-orig/client/scripts/linux dhcp-4.1.0p1/clie
+ # Delete the old addresses, routes and ARP information for this
+ # interface.
+ flush_if() {
+ ${ip} address flush dev $interface
+ ${ip} route flush dev $interface
+ ${ip} neighbour flush dev $interface
+ ${ip} -4 address flush dev $interface
+ ${ip} -4 route flush dev $interface
+ ${ip} -4 neighbour flush dev $interface
+ }
+
# Invoke the local dhcp client enter hooks, if they exist.
@@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
homepage = http://kde.org;
description = "KDE systray and plasma applet for network management.";
license = licenses.gplv2;
license = licenses.gpl2;
maintainers = with maintainers; [ phreedom ];
};
}
+23
View File
@@ -0,0 +1,23 @@
{ stdenv, fetchurl, perl }:
stdenv.mkDerivation rec {
name = "ndisc6-1.0.1";
src = fetchurl {
url = "http://www.remlab.net/files/ndisc6/archive/${name}.tar.bz2";
sha256 = "1pggc9x3zki1sv08rs8x4fm7pmd3sn1nwkan3szax19xg049xbqx";
};
buildInputs = [ perl ];
configureFlags = "--localstatedir=/var";
installFlags = "localstatedir=$(TMPDIR)";
meta = {
homepage = http://www.remlab.net/ndisc6/;
description = "A small collection of useful tools for IPv6 networking";
maintainers = [ stdenv.lib.maintainers.eelco ];
platforms = stdenv.lib.platforms.linux;
};
}
@@ -0,0 +1,24 @@
{ stdenv, fetchurl, intltool, pkgconfig, gtk, glib, libglade
, networkmanager, GConf, libnotify, gnome_keyring, dbus_glib
, polkit}:
stdenv.mkDerivation rec {
name = "network-manager-applet-${version}";
version = "0.8.1";
src = fetchurl {
url = "mirror://gnome/sources/network-manager-applet/0.8/network-manager-applet-${version}.tar.bz2";
sha256 = "0rn3mr0v8i3bkfhpvx6bbyhv1i6j6s120pkayq2318bg5ivbk12a";
};
buildInputs = [ intltool pkgconfig gtk glib libglade networkmanager GConf libnotify
gnome_keyring dbus_glib polkit];
meta = with stdenv.lib; {
homepage = http://projects.gnome.org/NetworkManager/;
description = "NetworkManager control appler for GNOME.";
license = licenses.gpl2;
maintainers = [ maintainers.phreedom ];
platforms = platforms.linux;
};
}