gnu: Add julia-plotutils.

* gnu/packages/julia-xyz.scm (julia-plotutils-0.6.0): New variable.
master
nixo 2019-10-11 15:59:36 +02:00
parent 6bc998043c
commit 4d2daab36c
1 changed files with 22 additions and 0 deletions

View File

@ -1257,3 +1257,25 @@ with color. This includes conversion between colorspaces, measuring distance
between colors, simulating color blindness, parsing colors, and generating between colors, simulating color blindness, parsing colors, and generating
color scales for graphics.") color scales for graphics.")
(license license:expat))) (license license:expat)))
(define-public julia-plotutils
(package
(name "julia-plotutils")
(version "0.6.0")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/JuliaPlots/PlotUtils.jl")
(commit (string-append "v" version))))
(file-name "PlotUtils")
(sha256
(base32 "0g91ap8pw7ipp3fsy0xkh357czhmrvpdfi77hnj3lyjrrvbjc8sh"))))
(propagated-inputs `(("julia-colors" ,julia-colors)
("julia-reexport" ,julia-reexport)))
(build-system julia-build-system)
(home-page "https://github.com/JuliaPlots/PlotUtils.jl")
(synopsis "Generic helper algorithms for building plotting components")
(description "@code{PlotUtils.jl} is a julia package that provides helper
algorithms for building plotting components.")
(license license:expat)))