mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-05 19:11:43 -05:00
gnu: rust-universal-hash: Move to (gnu packages crates-crypto).
* gnu/packages/crates-io.scm (rust-universal-hash-0.5, rust-universal-hash-0.4, rust-universal-hash-0.3): Move from here ... * gnu/packages/crates-crypto.scm: ... to here. Change-Id: I4ccca652dc09ab4b99f2bf072de61b80227700c8
This commit is contained in:
parent
f08ce35a8f
commit
d77dad8e1d
2 changed files with 61 additions and 61 deletions
|
@ -3481,3 +3481,64 @@ (define-public rust-tiger-0.1
|
||||||
(description
|
(description
|
||||||
"This package provides the Tiger cryptographic hash function.")
|
"This package provides the Tiger cryptographic hash function.")
|
||||||
(license (list license:expat license:asl2.0))))
|
(license (list license:expat license:asl2.0))))
|
||||||
|
|
||||||
|
(define-public rust-universal-hash-0.5
|
||||||
|
(package
|
||||||
|
(name "rust-universal-hash")
|
||||||
|
(version "0.5.1")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "universal-hash" version))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32 "1sh79x677zkncasa95wz05b36134822w6qxmi1ck05fwi33f47gw"))
|
||||||
|
(snippet
|
||||||
|
#~(begin (use-modules (guix build utils))
|
||||||
|
(substitute* "Cargo.toml"
|
||||||
|
(("=2\\.4\\.1") "^2.4.1"))))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:cargo-inputs
|
||||||
|
(("rust-crypto-common" ,rust-crypto-common-0.1)
|
||||||
|
("rust-subtle" ,rust-subtle-2))))
|
||||||
|
(home-page "https://github.com/RustCrypto/traits")
|
||||||
|
(synopsis "Trait for universal hash functions")
|
||||||
|
(description "This package provides traits for universal hash functions.")
|
||||||
|
(license (list license:expat license:asl2.0))))
|
||||||
|
|
||||||
|
(define-public rust-universal-hash-0.4
|
||||||
|
(package
|
||||||
|
(inherit rust-universal-hash-0.5)
|
||||||
|
(name "rust-universal-hash")
|
||||||
|
(version "0.4.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "universal-hash" version))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"00hljq64l0p68yrncvyww4cdgkzpzl49vrlnj57kwblkak3b49l3"))))
|
||||||
|
(arguments
|
||||||
|
`(#:cargo-inputs
|
||||||
|
(("rust-generic-array" ,rust-generic-array-0.14)
|
||||||
|
("rust-subtle" ,rust-subtle-2))))))
|
||||||
|
|
||||||
|
(define-public rust-universal-hash-0.3
|
||||||
|
(package
|
||||||
|
(inherit rust-universal-hash-0.4)
|
||||||
|
(name "rust-universal-hash")
|
||||||
|
(version "0.3.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "universal-hash" version))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32 "00aa241pab99z66f0s464vdrxnk3igs8z1qm6j01chcv5w7r036z"))))
|
||||||
|
(arguments
|
||||||
|
`(#:skip-build? #t
|
||||||
|
#:cargo-inputs
|
||||||
|
(("rust-generic-array" ,rust-generic-array-0.12)
|
||||||
|
("rust-subtle" ,rust-subtle-2))))))
|
||||||
|
|
|
@ -78621,67 +78621,6 @@ (define-public rust-uniquote-3
|
||||||
clear display in the output.")
|
clear display in the output.")
|
||||||
(license (list license:expat license:asl2.0))))
|
(license (list license:expat license:asl2.0))))
|
||||||
|
|
||||||
(define-public rust-universal-hash-0.5
|
|
||||||
(package
|
|
||||||
(name "rust-universal-hash")
|
|
||||||
(version "0.5.1")
|
|
||||||
(source
|
|
||||||
(origin
|
|
||||||
(method url-fetch)
|
|
||||||
(uri (crate-uri "universal-hash" version))
|
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
|
||||||
(sha256
|
|
||||||
(base32 "1sh79x677zkncasa95wz05b36134822w6qxmi1ck05fwi33f47gw"))
|
|
||||||
(snippet
|
|
||||||
#~(begin (use-modules (guix build utils))
|
|
||||||
(substitute* "Cargo.toml"
|
|
||||||
(("=2\\.4\\.1") "^2.4.1"))))))
|
|
||||||
(build-system cargo-build-system)
|
|
||||||
(arguments
|
|
||||||
`(#:cargo-inputs
|
|
||||||
(("rust-crypto-common" ,rust-crypto-common-0.1)
|
|
||||||
("rust-subtle" ,rust-subtle-2))))
|
|
||||||
(home-page "https://github.com/RustCrypto/traits")
|
|
||||||
(synopsis "Trait for universal hash functions")
|
|
||||||
(description "This package provides traits for universal hash functions.")
|
|
||||||
(license (list license:expat license:asl2.0))))
|
|
||||||
|
|
||||||
(define-public rust-universal-hash-0.4
|
|
||||||
(package
|
|
||||||
(inherit rust-universal-hash-0.5)
|
|
||||||
(name "rust-universal-hash")
|
|
||||||
(version "0.4.0")
|
|
||||||
(source
|
|
||||||
(origin
|
|
||||||
(method url-fetch)
|
|
||||||
(uri (crate-uri "universal-hash" version))
|
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
|
||||||
(sha256
|
|
||||||
(base32
|
|
||||||
"00hljq64l0p68yrncvyww4cdgkzpzl49vrlnj57kwblkak3b49l3"))))
|
|
||||||
(arguments
|
|
||||||
`(#:cargo-inputs
|
|
||||||
(("rust-generic-array" ,rust-generic-array-0.14)
|
|
||||||
("rust-subtle" ,rust-subtle-2))))))
|
|
||||||
|
|
||||||
(define-public rust-universal-hash-0.3
|
|
||||||
(package
|
|
||||||
(inherit rust-universal-hash-0.4)
|
|
||||||
(name "rust-universal-hash")
|
|
||||||
(version "0.3.0")
|
|
||||||
(source
|
|
||||||
(origin
|
|
||||||
(method url-fetch)
|
|
||||||
(uri (crate-uri "universal-hash" version))
|
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
|
||||||
(sha256
|
|
||||||
(base32 "00aa241pab99z66f0s464vdrxnk3igs8z1qm6j01chcv5w7r036z"))))
|
|
||||||
(arguments
|
|
||||||
`(#:skip-build? #t
|
|
||||||
#:cargo-inputs
|
|
||||||
(("rust-generic-array" ,rust-generic-array-0.12)
|
|
||||||
("rust-subtle" ,rust-subtle-2))))))
|
|
||||||
|
|
||||||
(define-public rust-unix-socket-0.5
|
(define-public rust-unix-socket-0.5
|
||||||
(package
|
(package
|
||||||
(name "rust-unix-socket")
|
(name "rust-unix-socket")
|
||||||
|
|
Loading…
Reference in a new issue