* Added the IANA protocols and services files for /etc.

svn path=/nixpkgs/trunk/; revision=7288
This commit is contained in:
Eelco Dolstra 2006-12-09 00:54:11 +00:00
parent 42558043b3
commit 8695d51417
2 changed files with 16 additions and 0 deletions

View file

@ -0,0 +1,12 @@
{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "iana-etc-2.20";
src = fetchurl {
url = http://www.sethwklein.net/projects/iana-etc/downloads/iana-etc-2.20.tar.bz2;
md5 = "51d584b7b6115528c21e8ea32250f2b1";
};
installPhase = "ensureDir $out/etc; cp protocols services $out/etc";
}

View file

@ -2291,6 +2291,10 @@ rec {
inherit fetchurl stdenv;
};
iana_etc = import ../data/misc/iana-etc {
inherit fetchurl stdenv;
};
### APPLICATIONS