gnu: Add julia-bijections.

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

Change-Id: I23f50b2b148198446dc85cb3f217a48390f6ce88
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
Spencer King 2024-09-05 20:39:09 +00:00 committed by Ludovic Courtès
parent c250033aa6
commit b7250a27b6
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -506,6 +506,28 @@ (define-public julia-bfloat16s
only, not performance experiments.")
(license license:expat)))
(define-public julia-bijections
(package
(name "julia-bijections")
(version "0.1.9")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/scheinerman/Bijections.jl")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "1f58cvjvrjh6xzi6zzbakdicdhpkyzwdp15fg2y12vslgmab2k9h"))))
(build-system julia-build-system)
(home-page "https://github.com/scheinerman/Bijections.jl")
(synopsis "Bijection data type for Julia")
(description
"This package defines the @code{Bijection} data type.
A @code{Bijection} data structure behaves similar to a @code{Dict},
however it prevents assigning the same value to two different keys.")
(license license:expat)))
(define-public julia-bioalignments
(package
(name "julia-bioalignments")