fetchfossil: Don't support MD5.

This effectively means that SHA256 is the only way to go. I'm not really
bothered by this.

Corbin 76b74ab2 2d94071c

+3 -3
+3 -3
pkgs/build-support/fetchfossil/default.nix
··· 1 1 {stdenv, fossil}: 2 2 3 - {name ? null, url, rev, md5 ? null, sha256 ? null}: 3 + {name ? null, url, rev, sha256}: 4 4 5 5 stdenv.mkDerivation { 6 6 name = "fossil-archive" + (if name != null then "-${name}" else ""); ··· 11 11 # https://www.fossil-scm.org/index.html/doc/trunk/www/env-opts.md 12 12 impureEnvVars = [ "http_proxy" ]; 13 13 14 - outputHashAlgo = if md5 != null then "md5" else "sha256"; 14 + outputHashAlgo = "sha256"; 15 15 outputHashMode = "recursive"; 16 - outputHash = if md5 != null then md5 else sha256; 16 + outputHash = sha256; 17 17 18 18 inherit url rev; 19 19 preferLocalBuild = true;