Created
October 12, 2016 07:38
-
-
Save nico202/4aff0037f63993f871caa59bedaafe0d to your computer and use it in GitHub Desktop.
julia git missing llvm
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
with import <nixpkgs> {}; { | |
env = stdenv.mkDerivation { | |
name = "0.5"; | |
buildInputs = [ | |
julia-git | |
]; | |
shellHook = '' | |
unset http_proxy | |
export SSL_CERT_FILE=/etc/ssl/certs/ca-bundle.crt | |
export GIT_SSL_CAINFO=/etc/ssl/certs/ca-bundle.crt | |
''; | |
}; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment