diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2022-12-14 11:57:42 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2022-12-21 19:22:53 +0200 |
commit | 24203f4c8bfb2e121d0cf9663cab7a010d969bb4 (patch) | |
tree | 3d24fe31525fbe1ba111a5332ea172c720c67118 /gnu/packages | |
parent | b4e9e72ecf722fe7397b49e729f2346824769c04 (diff) | |
download | guix-24203f4c8bfb2e121d0cf9663cab7a010d969bb4.tar.gz |
gnu: julia-colors: Update to 0.12.9.
* gnu/packages/julia-xyz.scm (julia-colors): Update to 0.12.9. [arguments]: Add phase to skip ambiguities tests. [native-inputs]: Add julia-abstracttrees.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/julia-xyz.scm | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/gnu/packages/julia-xyz.scm b/gnu/packages/julia-xyz.scm index 9dfb7b0cd6..f642a6816e 100644 --- a/gnu/packages/julia-xyz.scm +++ b/gnu/packages/julia-xyz.scm @@ -895,7 +895,7 @@ transformations).") (define-public julia-colors (package (name "julia-colors") - (version "0.12.8") + (version "0.12.9") (source (origin (method git-fetch) @@ -904,12 +904,22 @@ transformations).") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "0kx3hq7rf8p5zx6ly9k5j90zijmc7yrwmy96cgkl2ibdfbnhmya3")))) + (base32 "1g0fvvz09pfk6jxqrdplwkw1yywcqvwjd3ga24hblq71mah367n6")))) (build-system julia-build-system) + (arguments + (list + #:phases + #~(modify-phases %standard-phases + (add-after 'unpack 'adjust-tests + (lambda _ + (substitute* "test/runtests.jl" + ((".*detect_ambiguities.*") ""))))))) (propagated-inputs (list julia-colortypes julia-fixedpointnumbers julia-reexport)) + (native-inputs + (list julia-abstracttrees)) (home-page "https://github.com/JuliaGraphics/Colors.jl") (synopsis "Tools for dealing with color") (description "This package provides a wide array of functions for dealing |