gnu: Add julia-datavalueinterfaces.

* gnu/packages/julia-xyz.scm (julia-datavalueinterfaces): New variable.
This commit is contained in:
Efraim Flashner 2021-05-31 10:51:44 +03:00
parent ccbf9c450e
commit 21df298ec9
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -487,6 +487,27 @@ (define-public julia-datastructures
@code{Accumulators}, @code{LinkedLists}, @code{SortedDicts} and many others.")
(license license:expat)))
(define-public julia-datavalueinterfaces
(package
(name "julia-datavalueinterfaces")
(version "1.0.0")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/queryverse/DataValueInterfaces.jl")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "0g2wj6q7jj956nx6g7dk8x7w1c4l2xcmnr1kq5x8s8fild9kslg8"))))
(build-system julia-build-system)
(home-page "https://github.com/queryverse/DataValueInterfaces.jl")
(synopsis "Interface for DataValues.jl")
(description "This package allows a few \"forward\" definitions for the
@code{DataValues.jl} package that other packages can utilize for integration
without having to take direct dependencies.")
(license license:expat)))
(define-public julia-dictionaries
(package
(name "julia-dictionaries")