mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-27 14:52:05 -05:00
gnu: Add julia-biogenerics.
* gnu/packages/julia-xyz.scm (julia-biogenerics): New variable. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
3f0b76bdcc
commit
ccc13b9e0a
1 changed files with 26 additions and 0 deletions
|
@ -333,6 +333,32 @@ (define-public julia-benchmarktools
|
||||||
benchmarks as well as comparing benchmark results.")
|
benchmarks as well as comparing benchmark results.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public julia-biogenerics
|
||||||
|
;; No upstream release
|
||||||
|
(let ((commit "a75abaf459250e2b5e22b4d9adf25fd36d2acab6")
|
||||||
|
(revision "1"))
|
||||||
|
(package
|
||||||
|
(name "julia-biogenerics")
|
||||||
|
(version (git-version "0.0.0" revision commit))
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/BioJulia/BioGenerics.jl")
|
||||||
|
(commit commit)))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "17d222vi9nssjwr5l349fss7jnglnjimp1z62kmfmxa4fsn8lk8l"))))
|
||||||
|
(build-system julia-build-system)
|
||||||
|
(inputs
|
||||||
|
(list julia-transcodingstreams))
|
||||||
|
(home-page "https://github.com/BioJulia/BioGenerics.jl")
|
||||||
|
(synopsis "Generic methods used by BioJulia packages")
|
||||||
|
(description "This package provides generic methods and modules used in
|
||||||
|
many of the other BioJulia packages. This package defines IO, exceptions, and
|
||||||
|
other types or methods used by other BioJulia packages.")
|
||||||
|
(license license:expat))))
|
||||||
|
|
||||||
(define-public julia-blockarrays
|
(define-public julia-blockarrays
|
||||||
(package
|
(package
|
||||||
(name "julia-blockarrays")
|
(name "julia-blockarrays")
|
||||||
|
|
Loading…
Reference in a new issue