mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-23 19:19:20 -05:00
gnu: Add rust-windows-aarch64-msvc-0.48.
* gnu/packages/crates-io.scm (rust-windows-aarch64-msvc-0.48): New variable. (rust-windows-aarch64-msvc-0.42): Inherit from rust-windows-aarch64-msvc-0.48.
This commit is contained in:
parent
8aef6edf79
commit
0bce168c5a
1 changed files with 24 additions and 7 deletions
|
@ -73095,8 +73095,31 @@ (define-public rust-windows-aarch64-gnullvm-0.42
|
||||||
"This package provides code gen support for the windows crate.")
|
"This package provides code gen support for the windows crate.")
|
||||||
(license (list license:expat license:asl2.0))))
|
(license (list license:expat license:asl2.0))))
|
||||||
|
|
||||||
|
(define-public rust-windows-aarch64-msvc-0.48
|
||||||
|
(package
|
||||||
|
(name "rust-windows-aarch64-msvc")
|
||||||
|
(version "0.48.0")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "windows-aarch64-msvc" version))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1wvwipchhywcjaw73h998vzachf668fpqccbhrxzrz5xszh2gvxj"))
|
||||||
|
(snippet
|
||||||
|
'(delete-file "lib/windows.0.48.0.lib"))))
|
||||||
|
(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-aarch64-msvc-0.42
|
(define-public rust-windows-aarch64-msvc-0.42
|
||||||
(package
|
(package
|
||||||
|
(inherit rust-windows-aarch64-msvc-0.48)
|
||||||
(name "rust-windows-aarch64-msvc")
|
(name "rust-windows-aarch64-msvc")
|
||||||
(version "0.42.2")
|
(version "0.42.2")
|
||||||
(source (origin
|
(source (origin
|
||||||
|
@ -73108,14 +73131,8 @@ (define-public rust-windows-aarch64-msvc-0.42
|
||||||
"0hsdikjl5sa1fva5qskpwlxzpc5q9l909fpl1w6yy1hglrj8i3p0"))
|
"0hsdikjl5sa1fva5qskpwlxzpc5q9l909fpl1w6yy1hglrj8i3p0"))
|
||||||
(snippet
|
(snippet
|
||||||
'(delete-file "lib/windows.lib"))))
|
'(delete-file "lib/windows.lib"))))
|
||||||
(build-system cargo-build-system)
|
|
||||||
(arguments
|
(arguments
|
||||||
(list #:skip-build? #t))
|
(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-aarch64-msvc-0.36
|
(define-public rust-windows-aarch64-msvc-0.36
|
||||||
(package
|
(package
|
||||||
|
|
Loading…
Reference in a new issue