f39658b577
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
10 lines
236 B
Nix
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";
|
|
};
|
|
}
|