* Added net-tools (for ifconfig, route, hostname).

svn path=/nixpkgs/trunk/; revision=805
This commit is contained in:
Eelco Dolstra
2004-02-19 12:46:35 +00:00
parent cd0e06b9ef
commit e5fd37f35d
4 changed files with 104 additions and 0 deletions
@@ -0,0 +1,13 @@
{stdenv, fetchurl}:
derivation {
name = "net-tools-1.60";
system = stdenv.system;
builder = ./builder.sh;
src = fetchurl {
url = http://www.tazenda.demon.co.uk/phil/net-tools/net-tools-1.60.tar.bz2;
md5 = "888774accab40217dde927e21979c165";
};
config = ./config.h;
inherit stdenv;
}