gnu: Add julia-referenceables.

* gnu/packages/julia-xyz.scm (julia-referenceables): New variable.

Change-Id: I59e95742140beb91d93d32ab35b655cb2028cd71
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
Spencer King 2024-12-20 23:17:24 +00:00 committed by Ludovic Courtès
parent 27e389277a
commit ea740fef1b
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -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")