mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 08:23:09 +00:00
Merge pull request #316084 from codedownio/fix-julia-withpkgs-git
julia.withPackages: fix compatibility with new git security features
This commit is contained in:
commit
ce653dce76
@ -52,7 +52,10 @@ runCommand "julia-depot" {
|
||||
# for finding the extra packages we need to add
|
||||
python ${./python}/find_package_implications.py "${closureYaml}" '${lib.generators.toJSON {} packageImplications}' extra_package_names.txt
|
||||
|
||||
# git config --global --add safe.directory '/nix'
|
||||
# Work around new git security features added in git 2.44.1
|
||||
# See https://github.com/NixOS/nixpkgs/issues/315890
|
||||
git config --global --add safe.directory '*'
|
||||
|
||||
export JULIA_PKG_USE_CLI_GIT="true"
|
||||
|
||||
# At time of writing, this appears to be the only way to turn precompiling's
|
||||
|
Loading…
Reference in New Issue
Block a user