mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 07:46:09 +01:00
Merge pull request #25091 from joepie91/patch-2
fetchurl: fixed typo in error message
This commit is contained in:
commit
20647f8a8e
1 changed files with 1 additions and 1 deletions
|
@ -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 =
|
||||
|
|
Loading…
Reference in a new issue