nixpkgs/pkgs/configs/etc/protocols/default.nix
Armijn Hemel f39658b577 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
2006-03-08 19:01:38 +00:00

10 lines
236 B
Nix

{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";
};
}