diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2022-08-16 16:18:57 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2022-08-16 16:18:57 +0200 |
commit | 2345cd49de2592e87a0bc700654b47fde3cc52d0 (patch) | |
tree | acc9506a98713810b84ce25b3187edfa4ce3ba0a /gnu/packages | |
parent | c42745ba39840f73ca363b38a3ab5e9ba9488560 (diff) | |
download | guix-2345cd49de2592e87a0bc700654b47fde3cc52d0.tar.gz |
gnu: Add go-github-com-biogo-store-step.
* gnu/packages/bioinformatics.scm (go-github-com-biogo-store-step): New variable.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/bioinformatics.scm | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index 8b11969de1..d4fc46b95b 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -16505,3 +16505,15 @@ useful for bioinformatic analysis.") (list go-gopkg-in-check-v1 go-github-com-kr-pretty)) (synopsis "LLRB store for biogo"))) + +(define-public go-github-com-biogo-store-step + (package + (inherit go-github-com-biogo-store-interval) + (name "go-github-com-biogo-store-step") + (arguments + '(#:import-path "github.com/biogo/store/step" + #:unpack-path "github.com/biogo/store")) + (propagated-inputs + (list go-gopkg-in-check-v1 + go-github-com-kr-pretty)) + (synopsis "Step store for biogo"))) |