me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-bio-types-0.12.

* gnu/packages/crates-io.scm (rust-bio-types-0.12): New variable.
master
Ricardo Wurmus 2021-11-10 12:55:14 +00:00
parent 94abd4b740
commit 6a4b4d3c1d
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 28 additions and 0 deletions

View File

@ -5317,6 +5317,34 @@ bindings to C and C++ libraries.")
("rust-diff" ,rust-diff-0.1)
("rust-shlex" ,rust-shlex-0.1))))))
(define-public rust-bio-types-0.12
(package
(name "rust-bio-types")
(version "0.12.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "bio-types" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "0qww2l3hbxyayhpv16yxzayxxxmvq7wk3j64xsx9rigzzfbdjy9z"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs
(("rust-derive-new" ,rust-derive-new-0.5)
("rust-lazy-static" ,rust-lazy-static-1)
("rust-petgraph" ,rust-petgraph-0.5)
("rust-regex" ,rust-regex-1)
("rust-serde" ,rust-serde-1)
("rust-strum-macros" ,rust-strum-macros-0.20)
("rust-thiserror" ,rust-thiserror-1))))
(home-page "https://rust-bio.github.io")
(synopsis "Common biomedical types for use in rust-bio and rust-htslib")
(description
"This package provides a collection of common biomedical types for use in
rust-bio and rust-htslib.")
(license license:expat)))
(define-public rust-bit-field-0.10
(package
(name "rust-bit-field")