gnu: Add julia-weakrefstrings.

* gnu/packages/julia-xyz.scm (julia-weakrefstrings): New variable.
This commit is contained in:
Efraim Flashner 2021-05-31 12:46:20 +03:00
parent 9f92c8b51f
commit f34f8a3d22
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -2270,6 +2270,28 @@ (define-public julia-versionparsing
\"foreign\" version numbers from external packages.")
(license license:expat)))
(define-public julia-weakrefstrings
(package
(name "julia-weakrefstrings")
(version "0.6.2")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/JuliaData/WeakRefStrings.jl")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "0129mf1axxycb1ans3idlvw8ch0hmdrl80q98jw63f99zz3ddipr"))))
(build-system julia-build-system)
(propagated-inputs
`(("julia-dataapi" ,julia-dataapi)))
(home-page "https://github.com/JuliaData/WeakRefStrings.jl")
(synopsis "Efficient string representation and transfer in Julia")
(description "This package provides a minimal String type for Julia that
allows for efficient string representation and transfer")
(license license:expat)))
(define-public julia-zipfile
(package
(name "julia-zipfile")