forked from mirrors/nixpkgs
Merge pull request #101542 from wahjava/fix/fetchfossil
fetchfossil: Depend on cacert
This commit is contained in:
commit
3819fb300b
|
@ -1,11 +1,11 @@
|
|||
{stdenv, fossil}:
|
||||
{stdenv, fossil, cacert}:
|
||||
|
||||
{name ? null, url, rev, sha256}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "fossil-archive" + (if name != null then "-${name}" else "");
|
||||
builder = ./builder.sh;
|
||||
nativeBuildInputs = [fossil];
|
||||
nativeBuildInputs = [fossil cacert];
|
||||
|
||||
# Envvar docs are hard to find. A link for the future:
|
||||
# https://www.fossil-scm.org/index.html/doc/trunk/www/env-opts.md
|
||||
|
|
Loading…
Reference in a new issue