gnu: Add julia-gr.

* gnu/packages/julia-xyz.scm (julia-gr): New variable.
This commit is contained in:
Efraim Flashner 2021-10-20 14:55:47 +03:00
parent 6f3a9d4c9b
commit 49996b2763
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -1895,6 +1895,28 @@ (define-public julia-genericschur
matrices the Schur form is often more useful.")
(license license:expat)))
(define-public julia-gr
(package
(name "julia-gr")
(version "0.58.1")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/jheinen/GR.jl")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "18zxa1w2wmrf44c5l10qbh99zjdp7h94gxlymh47cf5kj5fc4xmx"))))
(build-system julia-build-system)
(propagated-inputs
`(("julia-gr-jll" ,julia-gr-jll)))
(home-page "https://github.com/jheinen/GR.jl")
(synopsis "Plotting for Julia based on GR")
(description "This module provides a Julia interface to GR, a framework for
visualisation applications.")
(license license:expat)))
(define-public julia-graphics
(package
(name "julia-graphics")