2023-02-06 20:49:02 +00:00
|
|
|
{stdenv, lib, fossil, cacert}:
|
2016-08-19 05:29:30 +00:00
|
|
|
|
2016-08-21 18:52:53 +00:00
|
|
|
{name ? null, url, rev, sha256}:
|
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
|
|
|
|
2016-08-21 18:52:53 +00:00
|
|
|
outputHashAlgo = "sha256";
|
2016-08-19 05:29:30 +00:00
|
|
|
outputHashMode = "recursive";
|
2016-08-21 18:52:53 +00:00
|
|
|
outputHash = sha256;
|
2016-08-19 05:29:30 +00:00
|
|
|
|
|
|
|
inherit url rev;
|
|
|
|
preferLocalBuild = true;
|
|
|
|
}
|