me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-sysinfo-0.20.

* gnu/packages/crates-io.scm (rust-sysinfo-0.20): New variable.
(rust-sysinfo-0.18): Inherit from above.
master
Nicolas Goaziou 2021-11-03 23:13:48 +01:00 committed by Leo Famulari
parent 06b51c68de
commit a7ca9d4008
No known key found for this signature in database
GPG Key ID: 2646FA30BACA7F08
1 changed files with 28 additions and 5 deletions

View File

@ -52604,10 +52604,10 @@ no_std compatible by default, only relying on alloc.")
("rust-errno" ,rust-errno-0.2) ("rust-errno" ,rust-errno-0.2)
("rust-libc" ,rust-libc-0.2)))))) ("rust-libc" ,rust-libc-0.2))))))
(define-public rust-sysinfo-0.18 (define-public rust-sysinfo-0.20
(package (package
(name "rust-sysinfo") (name "rust-sysinfo")
(version "0.18.2") (version "0.20.3")
(source (source
(origin (origin
(method url-fetch) (method url-fetch)
@ -52615,15 +52615,13 @@ no_std compatible by default, only relying on alloc.")
(file-name (file-name
(string-append name "-" version ".tar.gz")) (string-append name "-" version ".tar.gz"))
(sha256 (sha256
(base32 (base32 "0ljf8cdn50g9vrg4h9qxv070n4zd83cv63g62007qs8d8n1pimwj"))))
"0zd974yydc4yszxgx9hiqm5ah2rqnsgyq3qrl7raf90scpxaw16l"))))
(build-system cargo-build-system) (build-system cargo-build-system)
(arguments (arguments
`(#:skip-build? #t `(#:skip-build? #t
#:cargo-inputs #:cargo-inputs
(("rust-cfg-if" ,rust-cfg-if-1) (("rust-cfg-if" ,rust-cfg-if-1)
("rust-core-foundation-sys" ,rust-core-foundation-sys-0.8) ("rust-core-foundation-sys" ,rust-core-foundation-sys-0.8)
("rust-doc-comment" ,rust-doc-comment-0.3)
("rust-libc" ,rust-libc-0.2) ("rust-libc" ,rust-libc-0.2)
("rust-ntapi" ,rust-ntapi-0.3) ("rust-ntapi" ,rust-ntapi-0.3)
("rust-once-cell" ,rust-once-cell-1) ("rust-once-cell" ,rust-once-cell-1)
@ -52636,6 +52634,31 @@ no_std compatible by default, only relying on alloc.")
processors, disks, components and networks.") processors, disks, components and networks.")
(license license:expat))) (license license:expat)))
(define-public rust-sysinfo-0.18
(package
(inherit rust-sysinfo-0.20)
(name "rust-sysinfo")
(version "0.18.2")
(source
(origin
(method url-fetch)
(uri (crate-uri "sysinfo" version))
(file-name
(string-append name "-" version ".tar.gz"))
(sha256
(base32 "0zd974yydc4yszxgx9hiqm5ah2rqnsgyq3qrl7raf90scpxaw16l"))))
(arguments
`(#:skip-build? #t
#:cargo-inputs
(("rust-cfg-if" ,rust-cfg-if-1)
("rust-core-foundation-sys" ,rust-core-foundation-sys-0.8)
("rust-doc-comment" ,rust-doc-comment-0.3)
("rust-libc" ,rust-libc-0.2)
("rust-ntapi" ,rust-ntapi-0.3)
("rust-once-cell" ,rust-once-cell-1)
("rust-rayon" ,rust-rayon-1)
("rust-winapi" ,rust-winapi-0.3))))))
(define-public rust-sysinfo-0.16 (define-public rust-sysinfo-0.16
(package (package
(inherit rust-sysinfo-0.18) (inherit rust-sysinfo-0.18)