mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: rust-chacha20poly1305-0.9: Adjust package dependencies.
* gnu/packages/crates-io.scm (rust-chacha20poly1305-0.9)[source]: Add snippet to adjust crate dependencies. [arguments]: Remove custom phases.
This commit is contained in:
parent
dbbcf8b75b
commit
7576d5cb43
1 changed files with 7 additions and 15 deletions
|
@ -10286,23 +10286,15 @@ (define-public rust-chacha20poly1305-0.9
|
|||
(uri (crate-uri "chacha20poly1305" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "0alawaaakczsll1b98qf4m6r6kfaw28506ljvsysjyjz3mnyv11v"))))
|
||||
(base32 "0alawaaakczsll1b98qf4m6r6kfaw28506ljvsysjyjz3mnyv11v"))
|
||||
(modules '((guix build utils)))
|
||||
(snippet
|
||||
'(begin
|
||||
(substitute* "Cargo.toml"
|
||||
(("version = \">=1, <1.5\"") "version = \"^1\""))))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-after 'configure 'relax-requirements
|
||||
(lambda _
|
||||
(substitute*
|
||||
"guix-vendor/rust-chacha20-0.8.1.tar.gz/Cargo.toml"
|
||||
(("version = \">=1, <1.5\"") "version = \"^1\""))
|
||||
(substitute*
|
||||
"guix-vendor/rust-chacha20poly1305-0.9.0.tar.gz/Cargo.toml"
|
||||
(("version = \">=1, <1.5\"") "version = \"^1\""))
|
||||
(substitute*
|
||||
"Cargo.toml"
|
||||
(("version = \">=1, <1.5\"") "version = \"^1\"")))))
|
||||
#:cargo-inputs
|
||||
`(#:cargo-inputs
|
||||
(("rust-aead" ,rust-aead-0.4)
|
||||
("rust-chacha20" ,rust-chacha20-0.8)
|
||||
("rust-cipher" ,rust-cipher-0.3)
|
||||
|
|
Loading…
Reference in a new issue