me
/
guix
Archived
1
0
Fork 0

gnu: rust-async-native-tls-0.3: Move to (gnu packages crates-tls).

* gnu/packages/crates-io.scm (rust-async-native-tls-0.3): Move from here ...
* gnu/packages/crates-tls.scm: ... to here.

Change-Id: Ib3289faa91bffed89cd965caede96145e0d17411
master
Efraim Flashner 2023-12-27 14:08:56 +02:00
parent c0db58384f
commit 212b96ff57
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
2 changed files with 27 additions and 27 deletions

View File

@ -4489,33 +4489,6 @@ primitives:
@end itemize")
(license (list license:asl2.0 license:expat))))
(define-public rust-async-native-tls-0.3
(package
(name "rust-async-native-tls")
(version "0.3.3")
(source
(origin
(method url-fetch)
(uri (crate-uri "async-native-tls" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "0cwv4vbrvcbv58b51y1azfbszzgzhrzxx92q5nl6hk6kkf97m7ly"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #true ;XXX: build when rust-async-std-1 is packaged
#:cargo-inputs
(;;("rust-async-std" ,rust-async-std-1)
("rust-native-tls" ,rust-native-tls-0.2)
("rust-thiserror" ,rust-thiserror-1)
("rust-tokio" ,rust-tokio-0.2)
("rust-url" ,rust-url-2))
#:cargo-development-inputs
(("rust-threadpool" ,rust-threadpool-1))))
(home-page "https://docs.rs/crate/async-native-tls/")
(synopsis "Native TLS using futures")
(description "Native TLS using futures")
(license (list license:expat license:asl2.0))))
(define-public rust-async-net-1
(package
(name "rust-async-net")

View File

@ -33,6 +33,33 @@
#:use-module (gnu packages crates-web)
#:use-module (gnu packages rust-apps))
(define-public rust-async-native-tls-0.3
(package
(name "rust-async-native-tls")
(version "0.3.3")
(source
(origin
(method url-fetch)
(uri (crate-uri "async-native-tls" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "0cwv4vbrvcbv58b51y1azfbszzgzhrzxx92q5nl6hk6kkf97m7ly"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #true ;XXX: build when rust-async-std-1 is packaged
#:cargo-inputs
(;;("rust-async-std" ,rust-async-std-1)
("rust-native-tls" ,rust-native-tls-0.2)
("rust-thiserror" ,rust-thiserror-1)
("rust-tokio" ,rust-tokio-0.2)
("rust-url" ,rust-url-2))
#:cargo-development-inputs
(("rust-threadpool" ,rust-threadpool-1))))
(home-page "https://docs.rs/crate/async-native-tls/")
(synopsis "Native TLS using futures")
(description "Native TLS using futures.")
(license (list license:expat license:asl2.0))))
(define-public rust-async-tls-0.10
(package
(name "rust-async-tls")