Go to file
Thomas Tuegel 02157ab123 libcurl: honor $SSL_CERT_FILE (fixed)
The previous attempt to patch libcurl used

getenv("CURL_CA_BUNDLE") || getenv("SSL_CERT_FILE")

to get the second environment variable if the first is unset.
Unfortunately, this broke libcurl because the (||) operator is C returns
only 0 or 1, so it is inappropriate for pointer comparisons! Now we use

getenv("CURL_CA_BUNDLE") ? getenv("CURL_CA_BUNDLE") : getenv("SSL_CERT_FILE")

instead. This has one downside: it always calls getenv twice! But,
that's a small price to pay for actually being correct.
2014-12-02 10:41:24 -06:00
doc typos 2014-11-15 20:23:32 +01:00
lib ccl: 1.8 -> 1.10 (reapply after false revert) 2014-11-27 22:48:07 +00:00
maintainers Fix various Perl packages 2014-11-25 00:29:48 +01:00
nixos fix printing test 2014-11-27 20:01:18 +01:00
pkgs libcurl: honor $SSL_CERT_FILE (fixed) 2014-12-02 10:41:24 -06:00
.gitignore
.travis.yml
.version .version shouldn't include newline 2014-10-22 15:59:35 +02:00
COPYING
README.md
default.nix

README.md

Nixpkgs is a collection of packages for Nix package manager. Nixpkgs also includes NixOS linux distribution source code.