me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-jemallocator-0.3.

* gnu/packages/crates-io.scm (rust-jemallocator-0.3): New variable.

Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
master
John Soo 2019-12-15 09:05:39 -08:00 committed by Efraim Flashner
parent ab0a2216d7
commit f01b62db99
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 27 additions and 0 deletions

View File

@ -3768,6 +3768,33 @@ wasm-bindgen crate.")
(license (list license:asl2.0
license:expat))))
(define-public rust-jemallocator-0.3
(package
(name "rust-jemallocator")
(version "0.3.2")
(source
(origin
(method url-fetch)
(uri (crate-uri "jemallocator" version))
(file-name
(string-append name "-" version ".tar.gz"))
(sha256
(base32
"0sabfa5118b7l4ars5n36s2fjyfn59w4d6mjs6rrmsa5zky67bj3"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #t
#:cargo-inputs
(("rust-jemalloc-sys" ,rust-jemalloc-sys-0.3)
("rust-libc" ,rust-libc-0.2))
#:cargo-development-inputs
(("rust-paste" ,rust-paste-0.1))))
(home-page "https://github.com/gnzlbg/jemallocator")
(synopsis "Rust allocator backed by jemalloc")
(description
"This package provides a Rust allocator backed by jemalloc.")
(license (list license:expat license:asl2.0))))
(define-public rust-json-0.11
(package
(name "rust-json")