about summary refs log tree commit diff
path: root/pkgs/build-support/fetchurl
diff options
context:
space:
mode:
authorSven Slootweg <jamsoftgamedev@gmail.com>2017-04-21 16:41:09 +0200
committerGitHub <noreply@github.com>2017-04-21 16:41:09 +0200
commitfa8adf2c47accaefdb21f4703caa660393a9eaf8 (patch)
treece4b7ecdcb9801daa2344fb276af3988e92f8059 /pkgs/build-support/fetchurl
parent4c0098f1dc65bc664be941fb4290274eba703483 (diff)
downloadnixlib-fa8adf2c47accaefdb21f4703caa660393a9eaf8.tar
nixlib-fa8adf2c47accaefdb21f4703caa660393a9eaf8.tar.gz
nixlib-fa8adf2c47accaefdb21f4703caa660393a9eaf8.tar.bz2
nixlib-fa8adf2c47accaefdb21f4703caa660393a9eaf8.tar.lz
nixlib-fa8adf2c47accaefdb21f4703caa660393a9eaf8.tar.xz
nixlib-fa8adf2c47accaefdb21f4703caa660393a9eaf8.tar.zst
nixlib-fa8adf2c47accaefdb21f4703caa660393a9eaf8.zip
fetchurl: fixed typo in error message
This typo was likely introduced by copy-pasting the error message from elsewhere and forgetting to change the text, during the MD5 deprecation process (#4491).
Diffstat (limited to 'pkgs/build-support/fetchurl')
-rw-r--r--pkgs/build-support/fetchurl/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/build-support/fetchurl/default.nix b/pkgs/build-support/fetchurl/default.nix
index 1e872fbc57a4..fea06e22ab46 100644
--- a/pkgs/build-support/fetchurl/default.nix
+++ b/pkgs/build-support/fetchurl/default.nix
@@ -92,7 +92,7 @@ let
 
 in
 
-if md5 != "" then throw "fetchsvnssh does not support md5 anymore, please use sha256 or sha512"
+if md5 != "" then throw "fetchurl does not support md5 anymore, please use sha256 or sha512"
 else if (!hasHash) then throw "Specify hash for fetchurl fixed-output derivation: ${stdenv.lib.concatStringsSep ", " urls_}"
 else stdenv.mkDerivation {
   name =