Merge pull request #209583 from figsoda/cargo-hash
rustPlatform.fetchCargoTarball: default outputHashAlgo to sha256
This commit is contained in:
@@ -28,7 +28,11 @@ in
|
||||
} @ args:
|
||||
|
||||
let hash_ =
|
||||
if args ? hash then { outputHashAlgo = null; outputHash = args.hash; }
|
||||
if args ? hash then
|
||||
{
|
||||
outputHashAlgo = if args.hash == "" then "sha256" else null;
|
||||
outputHash = args.hash;
|
||||
}
|
||||
else if args ? sha256 then { outputHashAlgo = "sha256"; outputHash = args.sha256; }
|
||||
else throw "fetchCargoTarball requires a hash for ${name}";
|
||||
in stdenv.mkDerivation ({
|
||||
|
||||
Reference in New Issue
Block a user