mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-22 18:49:14 -05:00
gnu: Add rust-tiger-0.1.
* gnu/packages/crates-io.scm (rust-tiger-0.1): New variable. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
parent
9116989d78
commit
c918a03200
1 changed files with 27 additions and 0 deletions
|
@ -50879,6 +50879,33 @@ (define-public rust-thrussh-libsodium-0.1
|
|||
"You can bind to libsodium from Rust with this crate.")
|
||||
(license (list license:asl2.0 license:expat))))
|
||||
|
||||
(define-public rust-tiger-0.1
|
||||
(package
|
||||
(name "rust-tiger")
|
||||
(version "0.1.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "tiger" version))
|
||||
(file-name
|
||||
(string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "01bhc7h8kxc5kjqx9sqrb3g8h4f9av6hpxzyihjq7pprphf56gj4"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-inputs
|
||||
(("rust-block-buffer" ,rust-block-buffer-0.9)
|
||||
("rust-byteorder" ,rust-byteorder-1)
|
||||
("rust-digest" ,rust-digest-0.9))
|
||||
#:cargo-development-inputs
|
||||
(("rust-digest" ,rust-digest-0.9)
|
||||
("rust-hex-literal" ,rust-hex-literal-0.2))))
|
||||
(home-page "https://github.com/RustCrypto/hashes")
|
||||
(synopsis "Tiger hash function")
|
||||
(description
|
||||
"This package provides the Tiger cryptographic hash function.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-tikv-jemalloc-sys-0.4
|
||||
(package
|
||||
(name "rust-tikv-jemalloc-sys")
|
||||
|
|
Loading…
Reference in a new issue