1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-11 23:50:33 +02:00

gnu: Add rust-heapsize-0.3.

* gnu/packages/crates-io.scm (rust-heapsize-0.3): New variable.
This commit is contained in:
Efraim Flashner
2019-09-02 15:42:08 +03:00
parent bb41995dc7
commit 7439498366

View File

@@ -664,6 +664,23 @@ heap.")
(license (list license:asl2.0
license:expat))))
(define-public rust-heapsize-0.3
(package
(inherit rust-heapsize)
(name "rust-heapsize")
(version "0.3.9")
(source
(origin
(method url-fetch)
(uri (crate-uri "heapsize" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"0dmwc37vgsdjzk10443dj4f23439i9gch28jcwzmry3chrwx8v2m"))))
(arguments
`(#:cargo-inputs (("rust-kernel32-sys" ,rust-kernel32-sys))
#:tests? #f)))) ;; No flexible-tests feature flags on this release.
(define-public rust-hex
(package
(name "rust-hex")