gnu: Add julia-plotutils.

* gnu/packages/julia-xyz.scm (julia-plotutils): New variable.
This commit is contained in:
Efraim Flashner 2021-05-27 16:19:37 +03:00
parent a033f81099
commit f11621f122
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -1553,6 +1553,33 @@ (define-public julia-pdmats
actual computation.")
(license license:expat)))
(define-public julia-plotutils
(package
(name "julia-plotutils")
(version "1.0.10")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/JuliaPlots/PlotUtils.jl")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32
"1jimdkp590g7s33w7i431nn7mp1phjy9gdjs88zyqsmq5hxldacg"))))
(build-system julia-build-system)
(propagated-inputs
`(("julia-colors" ,julia-colors)
("julia-colorschemes" ,julia-colorschemes)
("julia-reexport" ,julia-reexport)))
(native-inputs
`(("julia-stablerngs" ,julia-stablerngs)))
(home-page "https://github.com/JuliaPlots/PlotUtils.jl")
(synopsis "Helper algorithms for building plotting components")
(description "This package containts generic helper algorithms for building
plotting components.")
(license license:expat)))
(define-public julia-recipesbase
(package
(name "julia-recipesbase")