about summary refs log tree commit diff
path: root/pkgs/configs/etc/protocols/default.nix
blob: fe7054dab603de886fbf80eb2c98d16e27eebf7c (plain) (blame)
1
2
3
4
5
6
7
8
9
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";
  };
}