aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/interpreters/gauche
diff options
context:
space:
mode:
authorVladimír Čunát <v@cunat.cz>2019-05-09 08:42:07 +0200
committerVladimír Čunát <v@cunat.cz>2019-05-09 08:46:22 +0200
commit79bd4ad5794163b8a65acc86809a6603ee7c7ce7 (patch)
treefd27ca49e9222b55f354fc608f5c8d1d4a580842 /pkgs/development/interpreters/gauche
parent9d3d5e98bc415935265d48f59f538cdda52fc3bb (diff)
stdenv, cacert: consider $NIX_SSL_CERT_FILE in hooks
Some SSL libs don't react to $SSL_CERT_FILE. That actually makes sense to me, as we add this behavior as nixpkgs-specific, so it seems "safer" to use $NIX_*.
Diffstat (limited to 'pkgs/development/interpreters/gauche')
-rw-r--r--pkgs/development/interpreters/gauche/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/interpreters/gauche/default.nix b/pkgs/development/interpreters/gauche/default.nix
index 5481c4e7d05a..bb3294e2097b 100644
--- a/pkgs/development/interpreters/gauche/default.nix
+++ b/pkgs/development/interpreters/gauche/default.nix
@@ -23,7 +23,7 @@ stdenv.mkDerivation rec {
"--with-iconv=${libiconv}"
"--with-dbm=gdbm"
"--with-zlib=${zlib}"
- "--with-ca-bundle=$SSL_CERT_FILE"
+ "--with-ca-bundle=$NIX_SSL_CERT_FILE"
# TODO: Enable slib
# Current slib in nixpkgs is specialized to Guile
# "--with-slib=${slibGuile}/lib/slib"