mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-11 14:26:13 +01:00
gnu: rust-hmac: Move to (gnu packages crates-graphics).
* gnu/packages/crates-io.scm (rust-hmac-0.12, rust-hmac-0.11, rust-hmac-0.10, rust-hmac-0.8, rust-hmac-0.7, rust-hmac-sha1-0.1): Move from here ... * gnu/packages/crates-crypto.scm: ... to here. Change-Id: Ibbe71f46d02871a44305cdb8feebad31b5f38756
This commit is contained in:
parent
973bdcd5a4
commit
bc11b82dcf
2 changed files with 140 additions and 140 deletions
|
@ -1482,3 +1482,143 @@ Derivation Function (HKDF).")
|
||||||
#:cargo-inputs
|
#:cargo-inputs
|
||||||
(("rust-digest" ,rust-digest-0.8)
|
(("rust-digest" ,rust-digest-0.8)
|
||||||
("rust-hmac" ,rust-hmac-0.7))))))
|
("rust-hmac" ,rust-hmac-0.7))))))
|
||||||
|
|
||||||
|
(define-public rust-hmac-0.12
|
||||||
|
(package
|
||||||
|
(name "rust-hmac")
|
||||||
|
(version "0.12.1")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "hmac" version))
|
||||||
|
(file-name
|
||||||
|
(string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0pmbr069sfg76z7wsssfk5ddcqd9ncp79fyz6zcm6yn115yc6jbc"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:skip-build? #t
|
||||||
|
#:cargo-inputs (("rust-digest" ,rust-digest-0.10))))
|
||||||
|
(home-page "https://github.com/RustCrypto/MACs")
|
||||||
|
(synopsis "Generic implementation of Hash-based Message Authentication Code")
|
||||||
|
(description
|
||||||
|
"This package provides a generic implementation of @acronym{HMAC,
|
||||||
|
Hash-based Message Authentication Code}.")
|
||||||
|
(license (list license:expat license:asl2.0))))
|
||||||
|
|
||||||
|
(define-public rust-hmac-0.11
|
||||||
|
(package
|
||||||
|
(inherit rust-hmac-0.12)
|
||||||
|
(name "rust-hmac")
|
||||||
|
(version "0.11.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "hmac" version))
|
||||||
|
(file-name
|
||||||
|
(string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"16z61aibdg4di40sqi4ks2s4rz6r29w4sx4gvblfph3yxch26aia"))))
|
||||||
|
(arguments
|
||||||
|
`(#:cargo-inputs
|
||||||
|
(("rust-crypto-mac" ,rust-crypto-mac-0.11)
|
||||||
|
("rust-digest" ,rust-digest-0.9))
|
||||||
|
#:cargo-development-inputs
|
||||||
|
(("rust-crypto-mac" ,rust-crypto-mac-0.11)
|
||||||
|
("rust-md-5" ,rust-md-5-0.9)
|
||||||
|
("rust-sha2" ,rust-sha2-0.9)
|
||||||
|
("rust-streebog" ,rust-streebog-0.9))))))
|
||||||
|
|
||||||
|
(define-public rust-hmac-0.10
|
||||||
|
(package
|
||||||
|
(inherit rust-hmac-0.11)
|
||||||
|
(name "rust-hmac")
|
||||||
|
(version "0.10.1")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "hmac" version))
|
||||||
|
(file-name
|
||||||
|
(string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"058yxq54x7xn0gk2vy9bl51r32c9z7qlcl2b80bjh3lk3rmiqi61"))))
|
||||||
|
(arguments
|
||||||
|
`(#:cargo-inputs
|
||||||
|
(("rust-crypto-mac" ,rust-crypto-mac-0.10)
|
||||||
|
("rust-digest" ,rust-digest-0.9))
|
||||||
|
#:cargo-development-inputs
|
||||||
|
(("rust-crypto-mac" ,rust-crypto-mac-0.10)
|
||||||
|
("rust-md-5" ,rust-md-5-0.9)
|
||||||
|
("rust-sha2" ,rust-sha2-0.9))))))
|
||||||
|
|
||||||
|
(define-public rust-hmac-0.8
|
||||||
|
(package
|
||||||
|
(inherit rust-hmac-0.11)
|
||||||
|
(name "rust-hmac")
|
||||||
|
(version "0.8.1")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "hmac" version))
|
||||||
|
(file-name
|
||||||
|
(string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0h48wc7iysh4xd6ci4prh8bb7nszijrh9w3blaaq8a6cilk8hs0j"))))
|
||||||
|
(arguments
|
||||||
|
`(#:cargo-inputs
|
||||||
|
(("rust-crypto-mac" ,rust-crypto-mac-0.8)
|
||||||
|
("rust-digest" ,rust-digest-0.9))
|
||||||
|
#:cargo-development-inputs
|
||||||
|
(("rust-crypto-mac" ,rust-crypto-mac-0.8)
|
||||||
|
("rust-md-5" ,rust-md-5-0.9)
|
||||||
|
("rust-sha2" ,rust-sha2-0.9))))))
|
||||||
|
|
||||||
|
(define-public rust-hmac-0.7
|
||||||
|
(package
|
||||||
|
(inherit rust-hmac-0.8)
|
||||||
|
(name "rust-hmac")
|
||||||
|
(version "0.7.1")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "hmac" version))
|
||||||
|
(file-name
|
||||||
|
(string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"15cnwpssp2n1kdm9x7abir67f2hp3q6rdfj1mcck3hm4rmj5xjsx"))))
|
||||||
|
(arguments
|
||||||
|
`(#:cargo-inputs
|
||||||
|
(("rust-crypto-mac" ,rust-crypto-mac-0.7)
|
||||||
|
("rust-digest" ,rust-digest-0.8))
|
||||||
|
#:cargo-development-inputs
|
||||||
|
(("rust-crypto-mac" ,rust-crypto-mac-0.7)
|
||||||
|
("rust-md-5" ,rust-md-5-0.8)
|
||||||
|
("rust-sha2" ,rust-sha2-0.8))))))
|
||||||
|
|
||||||
|
(define-public rust-hmac-sha1-0.1
|
||||||
|
(package
|
||||||
|
(name "rust-hmac-sha1")
|
||||||
|
(version "0.1.3")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "hmac-sha1" version))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32 "08k7aylc0v8x3abmxn3h73dkad3anfq2i94xk2mjrf4linnkycz1"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:skip-build? #t
|
||||||
|
#:cargo-inputs
|
||||||
|
(("rust-sha1" ,rust-sha1-0.2))))
|
||||||
|
(home-page "https://github.com/pantsman0/rust-hmac-sha1")
|
||||||
|
(synopsis "Minimal implementation of HMAC-SHA1 in Rust")
|
||||||
|
(description
|
||||||
|
"This package is a pure Rust implementation of the @acronym{HMAC,
|
||||||
|
Hash-based Message Authentication Code algorithm} for SHA1.")
|
||||||
|
(license license:bsd-3)))
|
||||||
|
|
|
@ -29972,146 +29972,6 @@ float literals. Two functions @code{parse_hexf32} and @code{parse_hexf64} are
|
||||||
provided for each type.")
|
provided for each type.")
|
||||||
(license license:cc0)))
|
(license license:cc0)))
|
||||||
|
|
||||||
(define-public rust-hmac-0.12
|
|
||||||
(package
|
|
||||||
(name "rust-hmac")
|
|
||||||
(version "0.12.1")
|
|
||||||
(source
|
|
||||||
(origin
|
|
||||||
(method url-fetch)
|
|
||||||
(uri (crate-uri "hmac" version))
|
|
||||||
(file-name
|
|
||||||
(string-append name "-" version ".tar.gz"))
|
|
||||||
(sha256
|
|
||||||
(base32
|
|
||||||
"0pmbr069sfg76z7wsssfk5ddcqd9ncp79fyz6zcm6yn115yc6jbc"))))
|
|
||||||
(build-system cargo-build-system)
|
|
||||||
(arguments
|
|
||||||
`(#:skip-build? #t
|
|
||||||
#:cargo-inputs (("rust-digest" ,rust-digest-0.10))))
|
|
||||||
(home-page "https://github.com/RustCrypto/MACs")
|
|
||||||
(synopsis "Generic implementation of Hash-based Message Authentication Code")
|
|
||||||
(description
|
|
||||||
"This package provides a generic implementation of @acronym{HMAC,
|
|
||||||
Hash-based Message Authentication Code}.")
|
|
||||||
(license (list license:expat license:asl2.0))))
|
|
||||||
|
|
||||||
(define-public rust-hmac-0.11
|
|
||||||
(package
|
|
||||||
(inherit rust-hmac-0.12)
|
|
||||||
(name "rust-hmac")
|
|
||||||
(version "0.11.0")
|
|
||||||
(source
|
|
||||||
(origin
|
|
||||||
(method url-fetch)
|
|
||||||
(uri (crate-uri "hmac" version))
|
|
||||||
(file-name
|
|
||||||
(string-append name "-" version ".tar.gz"))
|
|
||||||
(sha256
|
|
||||||
(base32
|
|
||||||
"16z61aibdg4di40sqi4ks2s4rz6r29w4sx4gvblfph3yxch26aia"))))
|
|
||||||
(arguments
|
|
||||||
`(#:cargo-inputs
|
|
||||||
(("rust-crypto-mac" ,rust-crypto-mac-0.11)
|
|
||||||
("rust-digest" ,rust-digest-0.9))
|
|
||||||
#:cargo-development-inputs
|
|
||||||
(("rust-crypto-mac" ,rust-crypto-mac-0.11)
|
|
||||||
("rust-md-5" ,rust-md-5-0.9)
|
|
||||||
("rust-sha2" ,rust-sha2-0.9)
|
|
||||||
("rust-streebog" ,rust-streebog-0.9))))))
|
|
||||||
|
|
||||||
(define-public rust-hmac-0.10
|
|
||||||
(package
|
|
||||||
(inherit rust-hmac-0.11)
|
|
||||||
(name "rust-hmac")
|
|
||||||
(version "0.10.1")
|
|
||||||
(source
|
|
||||||
(origin
|
|
||||||
(method url-fetch)
|
|
||||||
(uri (crate-uri "hmac" version))
|
|
||||||
(file-name
|
|
||||||
(string-append name "-" version ".tar.gz"))
|
|
||||||
(sha256
|
|
||||||
(base32
|
|
||||||
"058yxq54x7xn0gk2vy9bl51r32c9z7qlcl2b80bjh3lk3rmiqi61"))))
|
|
||||||
(arguments
|
|
||||||
`(#:cargo-inputs
|
|
||||||
(("rust-crypto-mac" ,rust-crypto-mac-0.10)
|
|
||||||
("rust-digest" ,rust-digest-0.9))
|
|
||||||
#:cargo-development-inputs
|
|
||||||
(("rust-crypto-mac" ,rust-crypto-mac-0.10)
|
|
||||||
("rust-md-5" ,rust-md-5-0.9)
|
|
||||||
("rust-sha2" ,rust-sha2-0.9))))))
|
|
||||||
|
|
||||||
(define-public rust-hmac-0.8
|
|
||||||
(package
|
|
||||||
(inherit rust-hmac-0.11)
|
|
||||||
(name "rust-hmac")
|
|
||||||
(version "0.8.1")
|
|
||||||
(source
|
|
||||||
(origin
|
|
||||||
(method url-fetch)
|
|
||||||
(uri (crate-uri "hmac" version))
|
|
||||||
(file-name
|
|
||||||
(string-append name "-" version ".tar.gz"))
|
|
||||||
(sha256
|
|
||||||
(base32
|
|
||||||
"0h48wc7iysh4xd6ci4prh8bb7nszijrh9w3blaaq8a6cilk8hs0j"))))
|
|
||||||
(arguments
|
|
||||||
`(#:cargo-inputs
|
|
||||||
(("rust-crypto-mac" ,rust-crypto-mac-0.8)
|
|
||||||
("rust-digest" ,rust-digest-0.9))
|
|
||||||
#:cargo-development-inputs
|
|
||||||
(("rust-crypto-mac" ,rust-crypto-mac-0.8)
|
|
||||||
("rust-md-5" ,rust-md-5-0.9)
|
|
||||||
("rust-sha2" ,rust-sha2-0.9))))))
|
|
||||||
|
|
||||||
(define-public rust-hmac-0.7
|
|
||||||
(package
|
|
||||||
(inherit rust-hmac-0.8)
|
|
||||||
(name "rust-hmac")
|
|
||||||
(version "0.7.1")
|
|
||||||
(source
|
|
||||||
(origin
|
|
||||||
(method url-fetch)
|
|
||||||
(uri (crate-uri "hmac" version))
|
|
||||||
(file-name
|
|
||||||
(string-append name "-" version ".tar.gz"))
|
|
||||||
(sha256
|
|
||||||
(base32
|
|
||||||
"15cnwpssp2n1kdm9x7abir67f2hp3q6rdfj1mcck3hm4rmj5xjsx"))))
|
|
||||||
(arguments
|
|
||||||
`(#:cargo-inputs
|
|
||||||
(("rust-crypto-mac" ,rust-crypto-mac-0.7)
|
|
||||||
("rust-digest" ,rust-digest-0.8))
|
|
||||||
#:cargo-development-inputs
|
|
||||||
(("rust-crypto-mac" ,rust-crypto-mac-0.7)
|
|
||||||
("rust-md-5" ,rust-md-5-0.8)
|
|
||||||
("rust-sha2" ,rust-sha2-0.8))))))
|
|
||||||
|
|
||||||
(define-public rust-hmac-sha1-0.1
|
|
||||||
(package
|
|
||||||
(name "rust-hmac-sha1")
|
|
||||||
(version "0.1.3")
|
|
||||||
(source
|
|
||||||
(origin
|
|
||||||
(method url-fetch)
|
|
||||||
(uri (crate-uri "hmac-sha1" version))
|
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
|
||||||
(sha256
|
|
||||||
(base32 "08k7aylc0v8x3abmxn3h73dkad3anfq2i94xk2mjrf4linnkycz1"))))
|
|
||||||
(build-system cargo-build-system)
|
|
||||||
(arguments
|
|
||||||
`(#:skip-build? #t
|
|
||||||
#:cargo-inputs
|
|
||||||
(("rust-sha1" ,rust-sha1-0.2))))
|
|
||||||
(home-page "https://github.com/pantsman0/rust-hmac-sha1")
|
|
||||||
(synopsis "Minimal implementation of HMAC-SHA1 in Rust")
|
|
||||||
(description
|
|
||||||
"This package is a pure Rust implementation of the @acronym{HMAC,
|
|
||||||
Hash-based Message Authentication Code algorithm} for SHA1.")
|
|
||||||
(license license:bsd-3)))
|
|
||||||
|
|
||||||
(define-public rust-hostname-0.3
|
(define-public rust-hostname-0.3
|
||||||
(package
|
(package
|
||||||
(name "rust-hostname")
|
(name "rust-hostname")
|
||||||
|
|
Loading…
Add table
Reference in a new issue