-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Closed
Labels
Description
I tried to install something with Homebrew today (a package that is out of date on Nix) and it failed with the following error:
curl: (51) SSL: certificate verification failed (result: 5)
Digging into this, it's trying to download a file using curl that, after redirects, ends up fetching a URL like
(I assume this URL is not permanent)
The fetch for this resource is what triggers the certificate verification failure. Unsetting $SSL_CERT_FILE fixes the issue. My assumption here is that the root certificate for that server isn't included in Nix's ca-bundle.crt, though I don't know why that would be.
This is with Nix 1.11.2 on OS X 10.11.5.
Reactions are currently unavailable