3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #269141 from fgaz/fetchfossil/sri-hash

fetchfossil: support SRI hashes
This commit is contained in:
Weijia Wang 2023-12-01 09:57:36 +01:00 committed by GitHub
commit 6cb7677277
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,7 +1,15 @@
{stdenv, lib, fossil, cacert}:
{name ? null, url, rev, sha256}:
{ name ? null
, url
, rev
, sha256 ? ""
, hash ? ""
}:
if hash != "" && sha256 != "" then
throw "Only one of sha256 or hash can be set"
else
stdenv.mkDerivation {
name = "fossil-archive" + (lib.optionalString (name != null) "-${name}");
builder = ./builder.sh;
@ -11,9 +19,14 @@ stdenv.mkDerivation {
# https://www.fossil-scm.org/index.html/doc/trunk/www/env-opts.md
impureEnvVars = [ "http_proxy" ];
outputHashAlgo = "sha256";
outputHashAlgo = if hash != "" then null else "sha256";
outputHashMode = "recursive";
outputHash = sha256;
outputHash = if hash != "" then
hash
else if sha256 != "" then
sha256
else
lib.fakeSha256;
inherit url rev;
preferLocalBuild = true;