mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 05:48:07 -05:00
gnu: Add rust-measureme-0.7.
* gnu/packages/crates-io.scm (rust-measureme-0.7): New variable. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
8de0fb1772
commit
6f13177a6e
1 changed files with 28 additions and 0 deletions
|
@ -12940,6 +12940,34 @@ (define-public rust-md5-asm-0.4
|
|||
(supported-systems '("x86_64-linux" "i686-linux"))
|
||||
(license license:expat)))
|
||||
|
||||
(define-public rust-measureme-0.7
|
||||
(package
|
||||
(name "rust-measureme")
|
||||
(version "0.7.1")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "measureme" version))
|
||||
(file-name
|
||||
(string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"0cmrrh86b3rvws6d7xp07wfn703yw02cakzirykvn4vh4p9hkxzy"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-inputs
|
||||
(("rust-byteorder" ,rust-byteorder-1.3)
|
||||
("rust-memmap" ,rust-memmap-0.7)
|
||||
("rust-parking-lot" ,rust-parking-lot-0.9)
|
||||
("rust-rustc-hash" ,rust-rustc-hash-1.1))))
|
||||
(home-page "https://github.com/rust-lang/measureme")
|
||||
(synopsis "Support crate for rustc's self-profiling feature")
|
||||
(description
|
||||
"Record rustc compiler events and serializing them to a compact binary
|
||||
format with this support package. It is integrated into rustc via the
|
||||
unstable -Z self-profile flag.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-memchr-2
|
||||
(package
|
||||
(name "rust-memchr")
|
||||
|
|
Loading…
Reference in a new issue