You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
494 B
20 lines
494 B
{stdenv, fossil}: |
|
|
|
{name ? null, url, rev, sha256}: |
|
|
|
stdenv.mkDerivation { |
|
name = "fossil-archive" + (if name != null then "-${name}" else ""); |
|
builder = ./builder.sh; |
|
buildInputs = [fossil]; |
|
|
|
# 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" ]; |
|
|
|
outputHashAlgo = "sha256"; |
|
outputHashMode = "recursive"; |
|
outputHash = sha256; |
|
|
|
inherit url rev; |
|
preferLocalBuild = true; |
|
}
|
|
|