guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

23/26: gnu: Add julia-weakrefstrings.


From: guix-commits
Subject: 23/26: gnu: Add julia-weakrefstrings.
Date: Mon, 31 May 2021 05:56:25 -0400 (EDT)

efraim pushed a commit to branch master
in repository guix.

commit f34f8a3d22fc522ea9f9dccd4a96c390f7e17863
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Mon May 31 12:46:20 2021 +0300

    gnu: Add julia-weakrefstrings.
    
    * gnu/packages/julia-xyz.scm (julia-weakrefstrings): New variable.
---
 gnu/packages/julia-xyz.scm | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/julia-xyz.scm b/gnu/packages/julia-xyz.scm
index 35c3e41..d0b1617 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")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]