3
0
Fork 0
forked from mirrors/nixpkgs

also add protocols for IPv4 packets configuration information. This appears

to be all the information that is non-site specific. The reason I want this
in a Nix expression is that it is easier to deploy in NixOS this way. It also
gives me a bit of a feel of what information is safe to keep inside the store
and what information isn't :)

svn path=/nixpkgs/trunk/; revision=5005
This commit is contained in:
Armijn Hemel 2006-03-08 19:01:38 +00:00
parent b329005d2a
commit f39658b577
2 changed files with 14 additions and 0 deletions

View file

@ -0,0 +1,4 @@
source $stdenv/setup
ensureDir $out
cp $src $out/protocols

View file

@ -0,0 +1,10 @@
{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "etc-protocols-1.3";
builder = ./builder.sh;
src = fetchurl {
url = http://losser.labs.cs.uu.nl/~armijn/.nix/protocols.gz;
md5 = "3c7dcc6c6d30fadec21829574116171a";
};
}