mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 06:18:07 -05:00
gnu: Add rust-windows-i686-msvc-0.42.
* gnu/packages/crates-io.scm (rust-windows-i686-msvc-0.42): New variable. (rust-windows-i686-msvc-0.36): Inherit from RUST-WINDOWS-I686-MSVC-0.42. (rust-windows-i686-msvc-0.32): Inherit from RUST-WINDOWS-I686-MSVC-0.36. (rust-windows-i686-msvc-0.28): Inherit from RUST-WINDOWS-I686-MSVC-0.32. Signed-off-by: Tobias Geerinckx-Rice <me@tobias.gr>
This commit is contained in:
parent
609db1de0a
commit
e25cd3335b
1 changed files with 59 additions and 59 deletions
|
@ -67888,65 +67888,6 @@ (define-public rust-windows-x86-64-gnu-0.32
|
|||
crate.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-windows-i686-msvc-0.28
|
||||
(package
|
||||
(name "rust-windows-i686-msvc")
|
||||
(version "0.28.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "windows_i686_msvc" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "0r0z8s1wcdwd20azsdfilf2a6bz68xkavl990wy64hyc8f51bmai"))))
|
||||
(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-i686-msvc-0.36
|
||||
(package
|
||||
(name "rust-windows-i686-msvc")
|
||||
(version "0.36.1")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "windows_i686_msvc" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"097h2a7wig04wbmpi3rz1akdy4s8gslj5szsx8g2v0dj91qr3rz2"))))
|
||||
(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-i686-msvc-0.32
|
||||
(package
|
||||
(name "rust-windows-i686-msvc")
|
||||
(version "0.32.0")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "windows_i686_msvc" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"0wj1wi01fc8hrasbakjcq8y5a7ynw9l2mcw08svmsq823axi2v0l"))))
|
||||
(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")
|
||||
|
@ -68085,6 +68026,65 @@ (define-public rust-windows-i686-gnu-0.28
|
|||
(base32
|
||||
"12hx7qpsjg9p7jggfcplqa3mf1mzr7k7s5ybzqwg1zmg4fn2aizm"))))))
|
||||
|
||||
(define-public rust-windows-i686-msvc-0.42
|
||||
(package
|
||||
(name "rust-windows-i686-msvc")
|
||||
(version "0.42.0")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "windows_i686_msvc" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"0ii2hrsdif2ms79dfiyfzm1n579jzj42ji3fpsxd57d3v9jjzhc4"))))
|
||||
(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-i686-msvc-0.36
|
||||
(package
|
||||
(inherit rust-windows-i686-msvc-0.42)
|
||||
(name "rust-windows-i686-msvc")
|
||||
(version "0.36.1")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "windows_i686_msvc" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"097h2a7wig04wbmpi3rz1akdy4s8gslj5szsx8g2v0dj91qr3rz2"))))))
|
||||
|
||||
(define-public rust-windows-i686-msvc-0.32
|
||||
(package
|
||||
(inherit rust-windows-i686-msvc-0.36)
|
||||
(name "rust-windows-i686-msvc")
|
||||
(version "0.32.0")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "windows_i686_msvc" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"0wj1wi01fc8hrasbakjcq8y5a7ynw9l2mcw08svmsq823axi2v0l"))))))
|
||||
|
||||
(define-public rust-windows-i686-msvc-0.28
|
||||
(package
|
||||
(inherit rust-windows-i686-msvc-0.32)
|
||||
(name "rust-windows-i686-msvc")
|
||||
(version "0.28.0")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "windows_i686_msvc" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"0r0z8s1wcdwd20azsdfilf2a6bz68xkavl990wy64hyc8f51bmai"))))))
|
||||
|
||||
(define-public rust-windows-implement-0.32
|
||||
(package
|
||||
(name "rust-windows-implement")
|
||||
|
|
Loading…
Reference in a new issue