1 {stdenv, lib, fossil, cacert}:
3 lib.fetchers.withNormalizedHash { } (
7 , outputHash ? lib.fakeHash
8 , outputHashAlgo ? null
12 name = "fossil-archive" + (lib.optionalString (name != null) "-${name}");
13 builder = ./builder.sh;
14 nativeBuildInputs = [fossil cacert];
16 # Envvar docs are hard to find. A link for the future:
17 # https://www.fossil-scm.org/index.html/doc/trunk/www/env-opts.md
18 impureEnvVars = [ "http_proxy" ];
20 inherit outputHash outputHashAlgo;
21 outputHashMode = "recursive";
24 preferLocalBuild = true;