me
/
guix
Archived
1
0
Fork 0

gnu: rust-derive-arbitrary-0.4: Fix cargo inputs.

* gnu/packages/crates-io.scm (rust-derive-arbitrary-0.4)[cargo-inputs]:
Replace rust-syn-2 with 1.

Change-Id: I03e6c18ef26844ae783f47c4cb6d59c5845b5d57
master
Efraim Flashner 2024-06-21 11:45:54 +03:00
parent 82c8d03f9d
commit 9fcc9beb46
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 7 additions and 2 deletions

View File

@ -20410,7 +20410,8 @@ Instead, enable the @code{derive} feature of the @code{arbitrary} crate.")
(license (list license:expat license:asl2.0))))
(define-public rust-derive-arbitrary-0.4
(package/inherit rust-derive-arbitrary-1
(package
(inherit rust-derive-arbitrary-1)
(name "rust-derive-arbitrary")
(version "0.4.7")
(source
@ -20419,7 +20420,11 @@ Instead, enable the @code{derive} feature of the @code{arbitrary} crate.")
(uri (crate-uri "derive_arbitrary" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "1rp0z4k0j5ip0bx6dssg97l4q6bakhf6lm5h1lpr3p3kwjsi585i"))))))
(base32 "1rp0z4k0j5ip0bx6dssg97l4q6bakhf6lm5h1lpr3p3kwjsi585i"))))
(arguments
`(#:cargo-inputs (("rust-proc-macro2" ,rust-proc-macro2-1)
("rust-quote" ,rust-quote-1)
("rust-syn" ,rust-syn-1))))))
(define-public rust-derive-builder-0.13
(package