me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-mimalloc-0.1.

* gnu/packages/crates-io.scm (rust-mimalloc-0.1): New variable.
master
Arun Isaac 2020-09-20 11:45:59 +05:30
parent d9146f98d3
commit 287ea25447
No known key found for this signature in database
GPG Key ID: 2E25EE8B61802BB3
1 changed files with 22 additions and 0 deletions

View File

@ -14364,6 +14364,28 @@ for Rust structs.")
(description "Rust bindings for Metal.")
(license (list license:expat license:asl2.0))))
(define-public rust-mimalloc-0.1
(package
(name "rust-mimalloc")
(version "0.1.20")
(source
(origin
(method url-fetch)
(uri (crate-uri "mimalloc" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"0x74b6jv6pxfl6bh44bnch6ajm3l5z3zq8w8mqlscbq8d77rnx80"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs
(("rust-libmimalloc-sys" ,rust-libmimalloc-sys-0.1))))
(home-page "https://crates.io/crates/mimalloc")
(synopsis "Performance and security oriented drop-in allocator")
(description "This package provides a performance and security oriented
drop-in allocator.")
(license license:expat)))
(define-public rust-mime-0.3
(package
(name "rust-mime")