Merge pull request #14869 from rardiol/factorio

factorio: add explict dependency on cacert for chroot build
This commit is contained in:
Joachim Fasting 2016-04-21 16:21:14 +02:00
commit 79de9293c2
2 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
{ stdenv, curl { stdenv, curl, cacert
# Begin download parameters # Begin download parameters
, username ? "" , username ? ""
, password ? "" , password ? ""
@ -20,7 +20,7 @@ stdenv.mkDerivation {
buildInputs = [ curl ]; buildInputs = [ curl ];
inherit url loginUrl username password; inherit url loginUrl username password cacert;
builder = ./fetch.sh; builder = ./fetch.sh;

View File

@ -8,7 +8,7 @@ source $stdenv/setup
curl="curl \ curl="curl \
--max-redirs 20 \ --max-redirs 20 \
--retry 3 \ --retry 3 \
--cacert /etc/ssl/certs/ca-bundle.crt \ --cacert $cacert/etc/ssl/certs/ca-bundle.crt \
$curlOpts \ $curlOpts \
$NIX_CURL_FLAGS" $NIX_CURL_FLAGS"