mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-16 19:57:39 -05:00
gnu: Add rust-mesalink-1.
* gnu/packages/crates-io.scm (rust-mesalink-1): New variable.
This commit is contained in:
parent
c0fde7184e
commit
aeb3c2e72f
1 changed files with 44 additions and 0 deletions
|
@ -18029,6 +18029,50 @@ (define-public rust-merlin-2
|
|||
non-interactive protocols can be implemented as if they were interactive.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public rust-mesalink-1
|
||||
(package
|
||||
(name "rust-mesalink")
|
||||
(version "1.1.0-cratesio")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "mesalink" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "02lp27j5vxdc95bf5g983yr660cm6vljikk0yqry4j6cjvfnyq85"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-test-flags
|
||||
'("--release"
|
||||
"--"
|
||||
"--skip=libssl::ssl::tests::early_data_to_mesalink_io"
|
||||
"--skip=libssl::ssl::tests::get_ssl_fd"
|
||||
"--skip=libssl::ssl::tests::ssl_on_nonblocking_socket")
|
||||
#:cargo-inputs
|
||||
(("rust-base64" ,rust-base64-0.10)
|
||||
("rust-bitflags" ,rust-bitflags-1)
|
||||
("rust-enum-to-u8-slice-derive" ,rust-enum-to-u8-slice-derive-0.1)
|
||||
("rust-env-logger" ,rust-env-logger-0.6)
|
||||
("rust-jemallocator" ,rust-jemallocator-0.3)
|
||||
("rust-lazy-static" ,rust-lazy-static-1)
|
||||
("rust-libc" ,rust-libc-0.2)
|
||||
("rust-parking-lot" ,rust-parking-lot-0.9)
|
||||
("rust-ring" ,rust-ring-0.16)
|
||||
("rust-rustls" ,rust-rustls-0.16)
|
||||
("rust-sct" ,rust-sct-0.6)
|
||||
("rust-untrusted" ,rust-untrusted-0.7)
|
||||
("rust-walkdir" ,rust-walkdir-2)
|
||||
("rust-webpki" ,rust-webpki-0.21)
|
||||
("rust-webpki-roots" ,rust-webpki-roots-0.17))
|
||||
#:cargo-development-inputs
|
||||
(("rust-cfg-if" ,rust-cfg-if-1))))
|
||||
(home-page "https://github.com/mesalock-linux/mesalink")
|
||||
(synopsis "Memory-safe and OpenSSL-compatible TLS library")
|
||||
(description
|
||||
"MesaLink is a memory-safe and OpenSSL-compatible TLS library
|
||||
based on Rustls and Ring.")
|
||||
(license license:bsd-3)))
|
||||
|
||||
(define-public rust-metadeps-1.1
|
||||
(package
|
||||
(name "rust-metadeps")
|
||||
|
|
Loading…
Reference in a new issue