Merge pull request #209583 from figsoda/cargo-hash

rustPlatform.fetchCargoTarball: default outputHashAlgo to sha256
This commit is contained in:
figsoda
2023-01-07 19:14:07 -05:00
committed by GitHub
@@ -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 ({