diff options
| author | Spencer King <spencer.king@geneoscopy.com> | 2024-12-20 23:17:24 +0000 |
|---|---|---|
| committer | Ludovic Courtès <ludo@gnu.org> | 2024-12-24 16:09:50 +0100 |
| commit | ea740fef1b320c761668a44eda21b2e95c672b8c (patch) | |
| tree | d9c7de285f15f525a83cada28fe021c5a9ad0bc0 | |
| parent | 27e389277affac9e5476e013eeddb9d9ec8af09c (diff) | |
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>
| -rw-r--r-- | gnu/packages/julia-xyz.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/julia-xyz.scm b/gnu/packages/julia-xyz.scm index b7d2a06ebf4..1f04558d277 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") |
