civodul pushed a commit to branch master
in repository guix.

commit ea740fef1b320c761668a44eda21b2e95c672b8c
Author: Spencer King <[email protected]>
AuthorDate: Fri Dec 20 23:17:24 2024 +0000

    gnu: Add julia-referenceables.
    
    * gnu/packages/julia-xyz.scm (julia-referenceables): New variable.
    
    Change-Id: I59e95742140beb91d93d32ab35b655cb2028cd71
    Signed-off-by: Ludovic Courtès <[email protected]>
---
 gnu/packages/julia-xyz.scm | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/gnu/packages/julia-xyz.scm b/gnu/packages/julia-xyz.scm
index b7d2a06ebf..1f04558d27 100644
--- a/gnu/packages/julia-xyz.scm
+++ b/gnu/packages/julia-xyz.scm
@@ -5522,6 +5522,27 @@ recursive arrays like arrays of arrays.")
 @code{HTTP.jl} backends.")
     (license license:expat)))
 
+(define-public julia-referenceables
+  (package
+    (name "julia-referenceables")
+    (version "0.1.3")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/JuliaFolds2/Referenceables.jl";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1qjssgqrpyc726zm31r4fpllsyvgc21lw9kqz96whgg779y0yr80"))))
+    (build-system julia-build-system)
+    (propagated-inputs (list julia-adapt))
+    (home-page "https://github.com/JuliaFolds2/Referenceables.jl";)
+    (synopsis "Provides an interface for referencing elements")
+    (description "This package provides an interface for readable and writable
+references to an element of an array or dictionary in Julia.")
+    (license license:expat)))
+
 (define-public julia-referencetests
   (package
     (name "julia-referencetests")

Reply via email to