diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2021-11-03 23:13:48 +0100 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2021-12-28 14:09:50 -0500 |
commit | a7ca9d4008ad05e9216b2980570db82ce0c13904 (patch) | |
tree | cbb87c0cd0c1bb745880e66ac0b13577419ffb39 | |
parent | 06b51c68dee3ef5688f52e745e3e2140791c27f8 (diff) | |
download | guix-a7ca9d4008ad05e9216b2980570db82ce0c13904.tar guix-a7ca9d4008ad05e9216b2980570db82ce0c13904.tar.gz |
gnu: Add rust-sysinfo-0.20.
* gnu/packages/crates-io.scm (rust-sysinfo-0.20): New variable.
(rust-sysinfo-0.18): Inherit from above.
-rw-r--r-- | gnu/packages/crates-io.scm | 33 |
1 files changed, 28 insertions, 5 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 656fe164a5..94edc21817 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -52604,10 +52604,10 @@ no_std compatible by default, only relying on alloc.") ("rust-errno" ,rust-errno-0.2) ("rust-libc" ,rust-libc-0.2)))))) -(define-public rust-sysinfo-0.18 +(define-public rust-sysinfo-0.20 (package (name "rust-sysinfo") - (version "0.18.2") + (version "0.20.3") (source (origin (method url-fetch) @@ -52615,15 +52615,13 @@ no_std compatible by default, only relying on alloc.") (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 - "0zd974yydc4yszxgx9hiqm5ah2rqnsgyq3qrl7raf90scpxaw16l")))) + (base32 "0ljf8cdn50g9vrg4h9qxv070n4zd83cv63g62007qs8d8n1pimwj")))) (build-system cargo-build-system) (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) @@ -52636,6 +52634,31 @@ no_std compatible by default, only relying on alloc.") processors, disks, components and networks.") (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 (package (inherit rust-sysinfo-0.18) |