2023-02-06 20:49:02 +00:00
|
|
|
{stdenv, lib, fossil, cacert}:
|
2016-08-19 05:29:30 +00:00
|
|
|
|
2023-11-22 08:47:57 +00:00
|
|
|
{ name ? null
|
|
|
|
, url
|
|
|
|
, rev
|
|
|
|
, sha256 ? ""
|
|
|
|
, hash ? ""
|
|
|
|
}:
|
2016-08-19 05:29:30 +00:00
|
|
|
|
2023-11-22 08:47:57 +00:00
|
|
|
if hash != "" && sha256 != "" then
|
|
|
|
throw "Only one of sha256 or hash can be set"
|
|
|
|
else
|
2016-08-19 05:29:30 +00:00
|
|
|
stdenv.mkDerivation {
|
2023-02-06 20:49:02 +00:00
|
|
|
name = "fossil-archive" + (lib.optionalString (name != null) "-${name}");
|
2016-08-19 05:29:30 +00:00
|
|
|
builder = ./builder.sh;
|
2020-10-24 11:13:05 +00:00
|
|
|
nativeBuildInputs = [fossil cacert];
|
2016-08-19 05:29:30 +00:00
|
|
|
|
2016-08-19 14:34:58 +00:00
|
|
|
# Envvar docs are hard to find. A link for the future:
|
|
|
|
# https://www.fossil-scm.org/index.html/doc/trunk/www/env-opts.md
|
|
|
|
impureEnvVars = [ "http_proxy" ];
|
2016-08-19 05:29:30 +00:00
|
|
|
|
2023-11-22 08:47:57 +00:00
|
|
|
outputHashAlgo = if hash != "" then null else "sha256";
|
2016-08-19 05:29:30 +00:00
|
|
|
outputHashMode = "recursive";
|
2023-11-22 08:47:57 +00:00
|
|
|
outputHash = if hash != "" then
|
|
|
|
hash
|
|
|
|
else if sha256 != "" then
|
|
|
|
sha256
|
|
|
|
else
|
|
|
|
lib.fakeSha256;
|
2016-08-19 05:29:30 +00:00
|
|
|
|
|
|
|
inherit url rev;
|
|
|
|
preferLocalBuild = true;
|
|
|
|
}
|