1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-05-28 03:51:53 +02:00

gnu: Add rust-winx-0.36.

* gnu/packages/crates-windows.scm (rust-winx-0.36): New variable.

Change-Id: I9ed67997ec6f24845478e29eb2a7e74cfbaa808e
Signed-off-by: Steve George <steve@futurile.net>
This commit is contained in:
Steve George
2025-03-24 11:29:58 +00:00
committed by Hilton Chain
parent 9b9f71b824
commit 707272fbbf
+20
View File
@@ -3667,6 +3667,26 @@ icons and metadata for executables.")
"A simple library wrapping a handful of useful winapi functions.")
(license license:expat)))
(define-public rust-winx-0.36
(package
(name "rust-winx")
(version "0.36.4")
(source
(origin
(method url-fetch)
(uri (crate-uri "winx" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "0bgls70sd0lxyhbklbs6ccchx0r2bbz0rcmgwxibhn0ryxvd6grz"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs (("rust-bitflags" ,rust-bitflags-2)
("rust-windows-sys" ,rust-windows-sys-0.59))))
(home-page "https://github.com/sunfishcode/winx")
(synopsis "Windows API helper library")
(description "This package provides a Windows API helper library.")
(license (list license:asl2.0))))
(define-public rust-wio-0.2
(package
(name "rust-wio")