diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2021-05-27 16:18:52 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2021-05-27 16:53:01 +0300 |
commit | a033f81099a9ab9255da73c13e5ba95ef37e0b02 (patch) | |
tree | d31b8e9d40df6edbe716a17aa6fd1d118f11d490 /gnu | |
parent | f74305a011ad43c3c53b34ed9514b27aca7e2c30 (diff) | |
download | guix-a033f81099a9ab9255da73c13e5ba95ef37e0b02.tar.gz guix-a033f81099a9ab9255da73c13e5ba95ef37e0b02.zip |
gnu: Add julia-colorschemes.
* gnu/packages/julia-xyz.scm (julia-colorschemes): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/julia-xyz.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/julia-xyz.scm b/gnu/packages/julia-xyz.scm index 2977be03e7..ebc2bb58ef 100644 --- a/gnu/packages/julia-xyz.scm +++ b/gnu/packages/julia-xyz.scm @@ -309,6 +309,31 @@ between colors, simulating color blindness, parsing colors, and generating color scales for graphics.") (license license:expat))) +(define-public julia-colorschemes + (package + (name "julia-colorschemes") + (version "3.12.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/JuliaGraphics/ColorSchemes.jl") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "08k39hbdf3jn0001f7qxa99xvagrnh9764911hs6cmxkvp061sa4")))) + (build-system julia-build-system) + (propagated-inputs + `(("julia-colors" ,julia-colors) + ("julia-colortypes" ,julia-colortypes) + ("julia-fixedpointnumbers" ,julia-fixedpointnumbers) + ("julia-staticarrays" ,julia-staticarrays))) + (home-page "https://github.com/JuliaGraphics/ColorSchemes.jl") + (synopsis "Colorschemes, colormaps, gradients, and palettes") + (description "This package provides a collection of colorschemes.") + (license license:expat))) + (define-public julia-colortypes (package (name "julia-colortypes") |