Skip to content

Instantly share code, notes, and snippets.

@nico202
Created October 12, 2016 07:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nico202/4aff0037f63993f871caa59bedaafe0d to your computer and use it in GitHub Desktop.
Save nico202/4aff0037f63993f871caa59bedaafe0d to your computer and use it in GitHub Desktop.
julia git missing llvm
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