dannym pushed a commit to branch master
in repository guix.

commit b1b82f9eb27511a0341f5d10aad9b950b486dce6
Author: Danny Milosavljevic <[email protected]>
AuthorDate: Tue May 20 01:01:13 2025 +0200

    gnu: Add [email protected].
    
    * gnu/packages/crates-windows.scm (rust-windows-implement-0.60): New 
variable.
    
    Change-Id: I14993fd2d0a15779ffbe418a0b3d20e300187707
---
 gnu/packages/crates-windows.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/crates-windows.scm b/gnu/packages/crates-windows.scm
index 27714a8d98..cfbf0294d4 100644
--- a/gnu/packages/crates-windows.scm
+++ b/gnu/packages/crates-windows.scm
@@ -1743,6 +1743,29 @@ crate.")
      "This package provides The interface macro for the windows crate.")
     (license (list license:expat license:asl2.0))))
 
+(define-public rust-windows-implement-0.60
+  (package
+    (name "rust-windows-implement")
+    (version "0.60.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "windows-implement" version))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32 "0dm88k3hlaax85xkls4gf597ar4z8m5vzjjagzk910ph7b8xszx4"))))
+    (build-system cargo-build-system)
+    (arguments
+     `(#:skip-build? #t
+       #:cargo-inputs (("rust-proc-macro2" ,rust-proc-macro2-1)
+                       ("rust-quote" ,rust-quote-1)
+                       ("rust-syn" ,rust-syn-2))))
+    (home-page "https://github.com/microsoft/windows-rs";)
+    (synopsis "The implement macro for the windows crate")
+    (description
+     "This package provides The implement macro for the windows crate.")
+    (license (list license:expat license:asl2.0))))
+
 (define-public rust-windows-core-0.58
   (package
     (name "rust-windows-core")

Reply via email to