gnu: Add rust-num-cpus.

* gnu/packages/crates-io.scm (rust-num-cpus): New variable.
master
Efraim Flashner 2019-08-28 16:05:39 +03:00
parent 018c298948
commit 5d2ae881ce
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 25 additions and 0 deletions

View File

@ -744,6 +744,31 @@ types as proposed in RFC 1158.")
(license (list license:asl2.0
license:expat))))
(define-public rust-num-cpus
(package
(name "rust-num-cpus")
(version "1.10.1")
(source
(origin
(method url-fetch)
(uri (crate-uri "num_cpus" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"0wrj3zvj6h3q26sqj9zxpd59frjb54n7jhjwf307clq31ic47vxw"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs
(("rust-libc" ,rust-libc))
#:cargo-development-inputs
(("rust-doc-comment" ,rust-doc-comment))))
(home-page "https://github.com/seanmonstar/num_cpus")
(synopsis "Get the number of CPUs on a machine")
(description
"Get the number of CPUs on a machine.")
(license (list license:asl2.0
license:expat))))
(define-public rust-num-integer
(package
(name "rust-num-integer")