gnu: Add julia-plotutils.
* gnu/packages/julia-xyz.scm (julia-plotutils-0.6.0): New variable.
This commit is contained in:
parent
6bc998043c
commit
4d2daab36c
|
@ -1257,3 +1257,25 @@ with color. This includes conversion between colorspaces, measuring distance
|
|||
between colors, simulating color blindness, parsing colors, and generating
|
||||
color scales for graphics.")
|
||||
(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)))
|
||||
|
|
Loading…
Reference in New Issue