gnu: Add rust-windows-sys-0.45.
* gnu/packages/crates-io.scm (rust-windows-sys-0.45): New variable. (rust-windows-sys-0.42): Inherit from rust-windows-sys-0.45.master
parent
11fef21d3e
commit
3e3ce9a25b
|
@ -70033,8 +70033,32 @@ crate.")
|
|||
crate.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-windows-sys-0.45
|
||||
(package
|
||||
(name "rust-windows-sys")
|
||||
(version "0.45.0")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "windows-sys" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "1l36bcqm4g89pknfp8r9rl1w4bn017q6a8qlx8viv0xjxzjkna3m"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
(list #:skip-build? #t
|
||||
#:cargo-inputs
|
||||
`(("rust-windows-targets" ,rust-windows-targets-0.42))))
|
||||
(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.42
|
||||
(package
|
||||
(inherit rust-windows-sys-0.45)
|
||||
(name "rust-windows-sys")
|
||||
(version "0.42.0")
|
||||
(source (origin
|
||||
|
@ -70044,7 +70068,6 @@ crate.")
|
|||
(sha256
|
||||
(base32
|
||||
"19waf8aryvyq9pzk0gamgfwjycgzk4gnrazpfvv171cby0h1hgjs"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
(list #:skip-build? #t
|
||||
#:cargo-inputs
|
||||
|
@ -70054,14 +70077,7 @@ crate.")
|
|||
("rust-windows-i686-msvc" ,rust-windows-i686-msvc-0.42)
|
||||
("rust-windows-x86-64-gnu" ,rust-windows-x86-64-gnu-0.42)
|
||||
("rust-windows-x86-64-gnullvm" ,rust-windows-x86-64-gnullvm-0.42)
|
||||
("rust-windows-x86-64-msvc" ,rust-windows-x86-64-msvc-0.42))))
|
||||
(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))))
|
||||
("rust-windows-x86-64-msvc" ,rust-windows-x86-64-msvc-0.42))))))
|
||||
|
||||
(define-public rust-windows-sys-0.36
|
||||
(package
|
||||
|
|
Reference in New Issue