diff options
author | Danny Milosavljevic <dannym@friendly-machines.com> | 2025-05-20 01:01:13 +0200 |
---|---|---|
committer | Danny Milosavljevic <dannym@friendly-machines.com> | 2025-05-20 01:10:16 +0200 |
commit | b1b82f9eb27511a0341f5d10aad9b950b486dce6 (patch) | |
tree | 1a2856c4239b0aa7dce1dfe3b05ff6c07dcc5e8e | |
parent | 88b95897caa23bcde2994bb141a6f1557d0a0e28 (diff) | |
download | guix-b1b82f9eb27511a0341f5d10aad9b950b486dce6.tar.gz guix-b1b82f9eb27511a0341f5d10aad9b950b486dce6.zip |
gnu: Add rust-windows-implement@0.60.0.
* gnu/packages/crates-windows.scm (rust-windows-implement-0.60): New variable.
Change-Id: I14993fd2d0a15779ffbe418a0b3d20e300187707
-rw-r--r-- | gnu/packages/crates-windows.scm | 23 |
1 files changed, 23 insertions, 0 deletions
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") |