mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: Add rust-metrohash-1.
* gnu/packages/crates-io.scm (rust-metrohash-1): New variable.
This commit is contained in:
parent
3cc41bcade
commit
a38cb9c70e
1 changed files with 25 additions and 0 deletions
|
@ -24013,6 +24013,31 @@ (define-public rust-twox-hash-1
|
|||
and XXH3 algorithms.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public rust-metrohash-1
|
||||
(package
|
||||
(name "rust-metrohash")
|
||||
(version "1.0.6")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "metrohash" version))
|
||||
(file-name
|
||||
(string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"0v2hn33ypx79naimfcz58pz46qhj2prawvx1p9abrb72375m799v"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-development-inputs
|
||||
(("rust-fnv" ,rust-fnv-1)
|
||||
("rust-twox-hash" ,rust-twox-hash-1))))
|
||||
(home-page
|
||||
"https://github.com/arthurprs/metrohash-rs")
|
||||
(synopsis "Rust implementation of the MetroHash hash algorithm")
|
||||
(description "This library is a Rust implementation of MetroHash, a high
|
||||
quality, high performance hash algorithm.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public rust-meval-0.2
|
||||
(package
|
||||
(name "rust-meval")
|
||||
|
|
Loading…
Reference in a new issue