gnu: Add rust-windows-x86-64-msvc-0.42.

* gnu/packages/crates-io.scm (rust-windows-x86-64-msvc-0.42): New
variable.
(rust-windows-x86-64-msvc-0.36): Inherit from
RUST-WINDOWS-X86-64-MSVC-0.42.
(rust-windows-x86-64-msvc-0.32): Inherit from
RUST-WINDOWS-X86-64-MSVC-0.36.
(rust-windows-x86-64-msvc-0.28): Inherit from
RUST-WINDOWS-X86-64-MSVC-0.32.

Signed-off-by: Tobias Geerinckx-Rice <me@tobias.gr>
This commit is contained in:
( 2022-11-29 07:00:36 +00:00 committed by Tobias Geerinckx-Rice
parent 90e8dd9430
commit 03e279f982
No known key found for this signature in database
GPG key ID: 0DB0FF884F556D79

View file

@ -67770,65 +67770,6 @@ (define-public rust-windows-0.32
("rust-windows-x86-64-gnu" ,rust-windows-x86-64-gnu-0.32)
("rust-windows-x86-64-msvc" ,rust-windows-x86-64-msvc-0.32))))))
(define-public rust-windows-x86-64-msvc-0.28
(package
(name "rust-windows-x86-64-msvc")
(version "0.28.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "windows_x86_64_msvc" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "17z8q25pd3dp6b84qm9nlayd3ym78sbryxlqmgcxvz9vpmy8qarz"))))
(build-system cargo-build-system)
(arguments `(#:skip-build? #t))
(home-page "https://github.com/microsoft/windows-rs")
(synopsis "Code gen support for the windows crate")
(description "This package provides code gen support for the windows
crate.")
(license (list license:expat license:asl2.0))))
(define-public rust-windows-x86-64-msvc-0.36
(package
(name "rust-windows-x86-64-msvc")
(version "0.36.1")
(source (origin
(method url-fetch)
(uri (crate-uri "windows_x86_64_msvc" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"103n3xijm5vr7qxr1dps202ckfnv7njjnnfqmchg8gl5ii5cl4f8"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #t))
(home-page "https://github.com/microsoft/windows-rs")
(synopsis "Code gen support for the windows crate")
(description "This package provides code gen support for the windows
crate.")
(license (list license:expat license:asl2.0))))
(define-public rust-windows-x86-64-msvc-0.32
(package
(name "rust-windows-x86-64-msvc")
(version "0.32.0")
(source (origin
(method url-fetch)
(uri (crate-uri "windows_x86_64_msvc" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"05l392h518dxn808dc1zkv6d0r9z38q68qqc0ix9fs9741v28jjh"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #t))
(home-page "https://github.com/microsoft/windows-rs")
(synopsis "Code gen support for the windows crate")
(description "This package provides code gen support for the windows
crate.")
(license (list license:expat license:asl2.0))))
(define-public rust-windows-aarch64-gnullvm-0.42
(package
(name "rust-windows-aarch64-gnullvm")
@ -68242,6 +68183,64 @@ (define-public rust-windows-x86-64-gnullvm-0.42
"This package provides code gen support for the windows crate.")
(license (list license:expat license:asl2.0))))
(define-public rust-windows-x86-64-msvc-0.42
(package
(name "rust-windows-x86-64-msvc")
(version "0.42.0")
(source (origin
(method url-fetch)
(uri (crate-uri "windows_x86_64_msvc" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"1xdnvhg8yj4fgjy0vkrahq5cbgfpcd7ak2bdv8s5lwjrazc0j07l"))))
(build-system cargo-build-system)
(arguments (list #:skip-build? #t))
(home-page "https://github.com/microsoft/windows-rs")
(synopsis "Code gen support for the windows crate")
(description
"This package provides code gen support for the windows crate.")
(license (list license:expat license:asl2.0))))
(define-public rust-windows-x86-64-msvc-0.36
(package
(inherit rust-windows-x86-64-msvc-0.42)
(name "rust-windows-x86-64-msvc")
(version "0.36.1")
(source (origin
(method url-fetch)
(uri (crate-uri "windows_x86_64_msvc" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"103n3xijm5vr7qxr1dps202ckfnv7njjnnfqmchg8gl5ii5cl4f8"))))))
(define-public rust-windows-x86-64-msvc-0.32
(package
(inherit rust-windows-x86-64-msvc-0.36)
(name "rust-windows-x86-64-msvc")
(version "0.32.0")
(source (origin
(method url-fetch)
(uri (crate-uri "windows_x86_64_msvc" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"05l392h518dxn808dc1zkv6d0r9z38q68qqc0ix9fs9741v28jjh"))))))
(define-public rust-windows-x86-64-msvc-0.28
(package
(inherit rust-windows-x86-64-msvc-0.32)
(name "rust-windows-x86-64-msvc")
(version "0.28.0")
(source (origin
(method url-fetch)
(uri (crate-uri "windows_x86_64_msvc" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"17z8q25pd3dp6b84qm9nlayd3ym78sbryxlqmgcxvz9vpmy8qarz"))))))
(define-public rust-xmltree-0.10
(package
(name "rust-xmltree")