fetchsvn: clean up md5 references

+2 -4
+2 -4
pkgs/build-support/fetchsvn/default.nix
··· 2 2 , subversion, glibcLocales, sshSupport ? true, openssh ? null 3 3 }: 4 4 5 - { url, rev ? "HEAD", md5 ? "", sha256 ? "", hash ? "" 5 + { url, rev ? "HEAD", sha256 ? "", hash ? "" 6 6 , ignoreExternals ? false, ignoreKeywords ? false, name ? null 7 7 , preferLocalBuild ? true 8 8 }: ··· 32 32 name_ = if name == null then "${repoName}-r${toString rev}" else name; 33 33 in 34 34 35 - if md5 != "" then 36 - throw "fetchsvn does not support md5 anymore, please use sha256" 37 - else if hash != "" && sha256 != "" then 35 + if hash != "" && sha256 != "" then 38 36 throw "Only one of sha256 or hash can be set" 39 37 else 40 38 stdenvNoCC.mkDerivation {