1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-05-02 07:15:53 +02:00

gnu: Add rust-sync-wrapper-1.

* gnu/packages/crates-io.scm (rust-sync-wrapper-1): New variable.
(rust-sync-wrapper-0.1): Inherit from rust-sync-wrapper-1.

Change-Id: Ia576756b6e83e400bde5c31e7afecb56c79ac693
This commit is contained in:
Efraim Flashner
2024-12-04 20:53:02 +02:00
parent 0a2365e56b
commit 0e8259fdda
+21 -3
View File
@@ -81860,17 +81860,17 @@ a syntax tree of Rust source code.")
standard library.")
(license (list license:expat license:asl2.0))))
(define-public rust-sync-wrapper-0.1
(define-public rust-sync-wrapper-1
(package
(name "rust-sync-wrapper")
(version "0.1.2")
(version "1.0.2")
(source
(origin
(method url-fetch)
(uri (crate-uri "sync_wrapper" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "0q01lyj0gr9a93n10nxsn8lwbzq97jqd6b768x17c8f7v7gccir0"))))
(base32 "0qvjyasd6w18mjg5xlaq5jgy84jsjfsvmnn12c13gypxbv75dwhb"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs (("rust-futures-core" ,rust-futures-core-0.3))
@@ -81885,6 +81885,24 @@ standard library.")
the absence of concurrency.")
(license license:asl2.0)))
(define-public rust-sync-wrapper-0.1
(package
(inherit rust-sync-wrapper-1)
(name "rust-sync-wrapper")
(version "0.1.2")
(source
(origin
(method url-fetch)
(uri (crate-uri "sync_wrapper" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "0q01lyj0gr9a93n10nxsn8lwbzq97jqd6b768x17c8f7v7gccir0"))))
(arguments
`(#:cargo-inputs (("rust-futures-core" ,rust-futures-core-0.3))
#:cargo-development-inputs
(("rust-futures" ,rust-futures-0.3)
("rust-pin-project-lite" ,rust-pin-project-lite-0.2))))))
(define-public rust-synom-0.11
(package
(name "rust-synom")