diff options
author | Ludovic Courtès <ludo@gnu.org> | 2022-12-23 22:35:21 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2022-12-24 00:39:10 +0100 |
commit | 83b1a2f68239993fbbe5035c5a7868dac8570b15 (patch) | |
tree | b7cda7308ff4282159e7be87e3d8677adeac3e00 /gnu | |
parent | ddd6b70591dfa51d41aa14bab295b8508a07152d (diff) | |
download | guix-83b1a2f68239993fbbe5035c5a7868dac8570b15.tar.gz guix-83b1a2f68239993fbbe5035c5a7868dac8570b15.zip |
gnu: julia-documenter: Depend on 'git-minimal/fixed'.
That way the main 'git-minimal' package can be updated without causing a
rebuild of all the dependents of 'julia-documenter'.
* gnu/packages/julia-xyz.scm (julia-documenter)[native-inputs]: Replace
'git-minimal' by 'git-minimal/fixed'.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/julia-xyz.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/julia-xyz.scm b/gnu/packages/julia-xyz.scm index 29e1cb0d90..414aba03f0 100644 --- a/gnu/packages/julia-xyz.scm +++ b/gnu/packages/julia-xyz.scm @@ -1614,7 +1614,7 @@ valuable enough at this time.") (inputs (list python-wrapper)) (native-inputs - (list git-minimal + (list git-minimal/fixed ;needed for the "Utilities" test julia-documentermarkdown julia-documentertools)) (home-page "https://juliadocs.github.io/Documenter.jl") |