diff options
author | Simon Tournier <zimon.toutoune@gmail.com> | 2023-09-17 21:12:40 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2023-09-28 13:48:32 +0300 |
commit | 14bf81748b0262f656b22e162e4b02faefeaa098 (patch) | |
tree | 7954744481a0caa52723cde0cb2b95672cf0b47e | |
parent | 23bf7cba07e091831fec9c17898b3248bda95c33 (diff) | |
download | guix-14bf81748b0262f656b22e162e4b02faefeaa098.tar.gz guix-14bf81748b0262f656b22e162e4b02faefeaa098.zip |
gnu: julia-wcslib-jll: Downgrade wcslib version.
The package julia-wcs does not support version higher than 7.x.
* gnu/packages/julia-jll.scm (julia-wcslib-jll)[inputs]: Replace wcslib by
wcslib-7.12.
-rw-r--r-- | gnu/packages/julia-jll.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/julia-jll.scm b/gnu/packages/julia-jll.scm index 753651cb9e..1c03b7e589 100644 --- a/gnu/packages/julia-jll.scm +++ b/gnu/packages/julia-jll.scm @@ -1792,7 +1792,7 @@ build tree Yggdrasil.") ;; There's a Julia file for each platform, override them all (find-files "src/wrappers/" "\\.jl$"))))))) (inputs - (list wcslib)) + (list wcslib-7.12)) (propagated-inputs (list julia-jllwrappers)) (home-page "https://github.com/JuliaBinaryWrappers/WCS_jll.jl") |