mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-31 16:42:38 -05:00
gnu: rust-tiger-0.1: Move to (gnu packages crates-crypto).
* gnu/packages/crates-io.scm (rust-tiger-0.1): Move from here ... * gnu/packages/crates-crypto.scm: ... to here. Change-Id: I1dc81d0abd741d208df4f7fa96c8e69ae7b5b1e6
This commit is contained in:
parent
a993516c89
commit
f08ce35a8f
2 changed files with 27 additions and 27 deletions
|
@ -3454,3 +3454,30 @@ (define-public rust-subtle-ng-2
|
|||
"This package provides pure-Rust traits and utilities for constant-time
|
||||
cryptographic implementations.")
|
||||
(license license:bsd-3)))
|
||||
|
||||
(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))))
|
||||
|
|
|
@ -72811,33 +72811,6 @@ (define-public rust-thrift-0.13
|
|||
"This crate provides Rust bindings for the Apache Thrift RPC system.")
|
||||
(license license:asl2.0)))
|
||||
|
||||
(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