1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-13 18:40:57 +02:00

gnu: Add rust-windows-future@0.2.1.

* gnu/packages/crates-windows.scm (rust-windows-future-0.2): New variable.

Change-Id: I685203daace8b6ecca51c18c7134d74ebbc32209
This commit is contained in:
Danny Milosavljevic 2025-05-20 01:02:21 +02:00
parent 5d1d97be1c
commit 02b1e6000a
No known key found for this signature in database
GPG key ID: E71A35542C30BAA5

View file

@ -2716,6 +2716,28 @@ implementation of Windows services.")
(description "This package provides Windows threading.")
(license (list license:expat license:asl2.0))))
(define-public rust-windows-future-0.2
(package
(name "rust-windows-future")
(version "0.2.1")
(source
(origin
(method url-fetch)
(uri (crate-uri "windows-future" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "13mdzcdn51ckpzp3frb8glnmkyjr1c30ym9wnzj9zc97hkll2spw"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #t
#:cargo-inputs (("rust-windows-core" ,rust-windows-core-0.61)
("rust-windows-link" ,rust-windows-link-0.1)
("rust-windows-threading" ,rust-windows-threading-0.1))))
(home-page "https://github.com/microsoft/windows-rs")
(synopsis "Windows async types")
(description "This package provides Windows async types.")
(license (list license:expat license:asl2.0))))
(define-public rust-windows-strings-0.1
(package
(name "rust-windows-strings")