summary refs log tree commit diff
diff options
context:
space:
mode:
authorTheodore Ni <3806110+tjni@users.noreply.github.com>2023-07-15 23:23:02 -0700
committerTheodore Ni <3806110+tjni@users.noreply.github.com>2023-07-20 21:24:07 -0700
commiteadaf81055e0595f7592ce422f6a31c108bde168 (patch)
tree0ed71553938856f5548d908bdd6f9b6ab6aaf731
parent6f30e0a9062685bd7aa3b9cf025b31f32af0463f (diff)
downloadnixpkgs-eadaf81055e0595f7592ce422f6a31c108bde168.tar
nixpkgs-eadaf81055e0595f7592ce422f6a31c108bde168.tar.gz
nixpkgs-eadaf81055e0595f7592ce422f6a31c108bde168.tar.bz2
nixpkgs-eadaf81055e0595f7592ce422f6a31c108bde168.tar.lz
nixpkgs-eadaf81055e0595f7592ce422f6a31c108bde168.tar.xz
nixpkgs-eadaf81055e0595f7592ce422f6a31c108bde168.tar.zst
nixpkgs-eadaf81055e0595f7592ce422f6a31c108bde168.zip
fetchsvn: clean up md5 references
-rw-r--r--pkgs/build-support/fetchsvn/default.nix6
1 files changed, 2 insertions, 4 deletions
diff --git a/pkgs/build-support/fetchsvn/default.nix b/pkgs/build-support/fetchsvn/default.nix
index 1a5764b4f61..41752eb55a7 100644
--- a/pkgs/build-support/fetchsvn/default.nix
+++ b/pkgs/build-support/fetchsvn/default.nix
@@ -2,7 +2,7 @@
 , subversion, glibcLocales, sshSupport ? true, openssh ? null
 }:
 
-{ url, rev ? "HEAD", md5 ? "", sha256 ? "", hash ? ""
+{ url, rev ? "HEAD", sha256 ? "", hash ? ""
 , ignoreExternals ? false, ignoreKeywords ? false, name ? null
 , preferLocalBuild ? true
 }:
@@ -32,9 +32,7 @@ let
   name_ = if name == null then "${repoName}-r${toString rev}" else name;
 in
 
-if md5 != "" then
-  throw "fetchsvn does not support md5 anymore, please use sha256"
-else if hash != "" && sha256 != "" then
+if hash != "" && sha256 != "" then
   throw "Only one of sha256 or hash can be set"
 else
 stdenvNoCC.mkDerivation {