forked from mirrors/nixpkgs
fetchfossil: Depend on cacert
Without it, it'll not able to verify SSL certificates, rendering it mostly useless
This commit is contained in:
parent
84d74ae9c9
commit
4eb42a4f1d
|
@ -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