me
/
guix
Archived
1
0
Fork 0

gnu: rust-send-wrapper: Add 0.5.0.

* gnu/packages/crates-io.scm (rust-send-wrapper-0.5): New variable.
(rust-send-wrapper-0.4): Inherit from it.
master
Marius Bakke 2022-08-17 21:37:36 +02:00
parent 58faf8069c
commit 8ece2cf571
No known key found for this signature in database
GPG Key ID: A2A06DF2A33A54FA
1 changed files with 17 additions and 3 deletions

View File

@ -54488,17 +54488,17 @@ Semantic Versioning.")
(base32
"18vhypw6zgccnrlm5ps1pwa0khz7ry927iznpr88b87cagr1v2iq"))))))
(define-public rust-send-wrapper-0.4
(define-public rust-send-wrapper-0.5
(package
(name "rust-send-wrapper")
(version "0.4.0")
(version "0.5.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "send_wrapper" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "1l7s28vfnwdbjyrrk3lx81jy4f0dcrv4iwyah2wj6vndxhqxaf7n"))))
(base32 "1mwbg1nv36d5kdjb0iwmprz24km0m8ck08dn59gdngqdc77hl34k"))))
(build-system cargo-build-system)
(arguments `(#:skip-build? #t))
(home-page "https://github.com/thk1/send_wrapper")
@ -54511,6 +54511,20 @@ also have to make sure that the wrapper is dropped from within the original
thread. If any of these constraints is violated, a panic occurs.")
(license (list license:expat license:asl2.0))))
(define-public rust-send-wrapper-0.4
(package
(inherit rust-send-wrapper-0.5)
(name "rust-send-wrapper")
(version "0.4.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "send_wrapper" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "1l7s28vfnwdbjyrrk3lx81jy4f0dcrv4iwyah2wj6vndxhqxaf7n"))))
(arguments `(#:skip-build? #t))))
(define-public rust-seq-io-0.3
(package
(name "rust-seq-io")