mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-11 13:49:23 -05:00
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:
parent
c250033aa6
commit
b7250a27b6
1 changed files with 22 additions and 0 deletions
|
@ -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")
|
||||
|
|
Loading…
Reference in a new issue