mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: rust-curve25519-dalek-3: Update to 3.2.1.
* gnu/packages/crates-crypto.scm (rust-curve25519-dalek-3): Update to 3.2.1. [source]: Add snippet to allow for newer versions of dependencies. Change-Id: Ia081218c8a847f795d5bfa4a61e5ec6b0016679e
This commit is contained in:
parent
e145718364
commit
ce243ee31c
1 changed files with 9 additions and 2 deletions
|
@ -1952,14 +1952,21 @@ on ristretto255 and Curve25519.")
|
||||||
(package
|
(package
|
||||||
(inherit rust-curve25519-dalek-4)
|
(inherit rust-curve25519-dalek-4)
|
||||||
(name "rust-curve25519-dalek")
|
(name "rust-curve25519-dalek")
|
||||||
(version "3.2.0")
|
(version "3.2.1")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (crate-uri "curve25519-dalek" version))
|
(uri (crate-uri "curve25519-dalek" version))
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "0q8v97275cy6v4ly6y2qwv9a8phnpjg9sy8kv7r6mgdjfacxz7qb"))))
|
(base32 "1h0vcl8p4syvci9zxkn3h80h06xv1fyqgcrfwrv0lnbzjr9d1ych"))
|
||||||
|
(modules '((guix build utils)))
|
||||||
|
(snippet
|
||||||
|
'(begin (substitute* "Cargo.toml"
|
||||||
|
(((string-append ">=([[:digit:]]+(\\.[[:digit:]]+)*),"
|
||||||
|
" <([[:digit:]]+(\\.[[:digit:]]+)*)")
|
||||||
|
_ version _)
|
||||||
|
(string-append ">=" version)))))))
|
||||||
(arguments
|
(arguments
|
||||||
`(#:cargo-inputs
|
`(#:cargo-inputs
|
||||||
(("rust-byteorder" ,rust-byteorder-1)
|
(("rust-byteorder" ,rust-byteorder-1)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue