From 424b92639a6ea50a9c1a6f969d9f0d476d8bf12c Mon Sep 17 00:00:00 2001 From: Daniel Ziltener Date: Mon, 11 Dec 2023 18:52:15 +0100 Subject: [PATCH] gnu: Add rust-windows-sys-0.52. * gnu/packages/crates-io.scm (rust-windows-sys-0.52): New variable. (rust-windows-sys-0.48): Inherit from urst-windows-sys-0.52. Signed-off-by: Efraim Flashner Change-Id: I07fac823f55d6ca9f88e0055b5dc9c6cc35035b9 --- gnu/packages/crates-io.scm | 34 +++++++++++++++++++++++++--------- 1 file changed, 25 insertions(+), 9 deletions(-) diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 08015bd692..e62c44c354 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -91879,8 +91879,32 @@ crate.") (description "Windows metadata reader.") (license (list license:expat license:asl2.0)))) +(define-public rust-windows-sys-0.52 + (package + (name "rust-windows-sys") + (version "0.52.0") + (source (origin + (method url-fetch) + (uri (crate-uri "windows-sys" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "0gd3v4ji88490zgb6b5mq5zgbvwv7zx1ibn8v3x83rwcdbryaar8")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? #t + #:cargo-inputs (("rust-windows-targets" ,rust-windows-targets-0.52)))) + (home-page "https://github.com/microsoft/windows-rs") + (synopsis "Rust for Windows") + (description "The windows crate lets you call any Windows API past, +present, and future using code generated on the fly directly from the metadata +describing the API and right into your Rust package where you can call them as +if they were just another Rust module.") + (license (list license:expat license:asl2.0)))) + (define-public rust-windows-sys-0.48 (package + (inherit rust-windows-sys-0.52) (name "rust-windows-sys") (version "0.48.0") (source (origin @@ -91890,17 +91914,9 @@ crate.") (sha256 (base32 "1aan23v5gs7gya1lc46hqn9mdh8yph3fhxmhxlw36pn6pqc28zb7")))) - (build-system cargo-build-system) (arguments `(#:skip-build? #t - #:cargo-inputs (("rust-windows-targets" ,rust-windows-targets-0.48)))) - (home-page "https://github.com/microsoft/windows-rs") - (synopsis "Rust for Windows") - (description "The windows crate lets you call any Windows API past, -present, and future using code generated on the fly directly from the metadata -describing the API and right into your Rust package where you can call them as -if they were just another Rust module.") - (license (list license:expat license:asl2.0)))) + #:cargo-inputs (("rust-windows-targets" ,rust-windows-targets-0.48)))))) (define-public rust-windows-sys-0.45 (package