me
/
guix
Archived
1
0
Fork 0

gnu: rust-schannel-0.1: Move to (gnu packages crates-windows).

* gnu/packages/crates-io.scm (rust-schannel-0.1): Move from here ...
* gnu/packages/crates-windows.scm: ... to here.

Change-Id: If83411c1a155d69fc92953900231e02da3d7443a
master
Efraim Flashner 2023-12-27 15:19:33 +02:00
parent f197a0835a
commit 1852676164
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
3 changed files with 25 additions and 24 deletions

View File

@ -61895,30 +61895,6 @@ encodable types.")
single-cell matrices.")
(license license:bsd-3)))
(define-public rust-schannel-0.1
(package
(name "rust-schannel")
(version "0.1.21")
(source
(origin
(method url-fetch)
(uri (crate-uri "schannel" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"1cxivcbczzfv4295pqi5s80kr7nhs7xc0i40zf43b7q5qw3gng3i"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #t
#:cargo-inputs
(("rust-windows-sys" ,rust-windows-sys-0.42))))
(home-page "https://github.com/steffengy/schannel-rs")
(synopsis "Rust bindings to the Windows SChannel APIs")
(description
"Rust bindings to the Windows SChannel APIs providing TLS client and
server functionality.")
(license license:expat)))
(define-public rust-scheduled-thread-pool-0.2
(package
(name "rust-scheduled-thread-pool")

View File

@ -33,6 +33,7 @@
#:use-module (gnu packages)
#:use-module (gnu packages crates-io)
#:use-module (gnu packages crates-web)
#:use-module (gnu packages crates-windows)
#:use-module (gnu packages pkg-config)
#:use-module (gnu packages rust-apps)
#:use-module (gnu packages tls))

View File

@ -545,6 +545,30 @@ for MinGW-w64 and MSVC (cross-)compile targets.")
#:cargo-development-inputs
(("rust-doc-comment" ,rust-doc-comment-0.3))))))
(define-public rust-schannel-0.1
(package
(name "rust-schannel")
(version "0.1.21")
(source
(origin
(method url-fetch)
(uri (crate-uri "schannel" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"1cxivcbczzfv4295pqi5s80kr7nhs7xc0i40zf43b7q5qw3gng3i"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #t
#:cargo-inputs
(("rust-windows-sys" ,rust-windows-sys-0.42))))
(home-page "https://github.com/steffengy/schannel-rs")
(synopsis "Rust bindings to the Windows SChannel APIs")
(description
"Rust bindings to the Windows SChannel APIs providing TLS client and
server functionality.")
(license license:expat)))
(define-public rust-windows-0.48
(package
(name "rust-windows")