3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #101542 from wahjava/fix/fetchfossil

fetchfossil: Depend on cacert
This commit is contained in:
Sandro 2020-11-27 00:15:29 +01:00 committed by GitHub
commit 3819fb300b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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