diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2021-05-31 12:46:20 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2021-05-31 12:54:48 +0300 |
commit | f34f8a3d22fc522ea9f9dccd4a96c390f7e17863 (patch) | |
tree | bae8959c8f4180153ddd1e3d6c61a4728d159cc5 | |
parent | 9f92c8b51f099d90b1e1d834298319e17b04d829 (diff) | |
download | guix-f34f8a3d22fc522ea9f9dccd4a96c390f7e17863.tar.gz |
gnu: Add julia-weakrefstrings.
* gnu/packages/julia-xyz.scm (julia-weakrefstrings): New variable.
-rw-r--r-- | gnu/packages/julia-xyz.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gnu/packages/julia-xyz.scm b/gnu/packages/julia-xyz.scm index 35c3e416f1..d0b1617815 100644 --- a/gnu/packages/julia-xyz.scm +++ b/gnu/packages/julia-xyz.scm @@ -2270,6 +2270,28 @@ useful in order to support @code{VersionNumber} comparisons applied to \"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") |