me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-beef-0.4.

* gnu/packages/crates-io.scm (rust-beef-0.4): New variable.

Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
master
Zheng Junjie 2021-01-25 13:53:37 +08:00 committed by Nicolas Goaziou
parent 91f61a7624
commit f6dfa724eb
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D
1 changed files with 22 additions and 0 deletions

View File

@ -3168,6 +3168,28 @@ c6e7d37. However, this package works only up to 128 bytes.")
(description "This library provides for encoding and decoding any base.")
(license license:expat)))
(define-public rust-beef-0.4
(package
(name "rust-beef")
(version "0.4.4")
(source
(origin
(method url-fetch)
(uri (crate-uri "beef" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "0hva1rmbx2a54q4ncs8i5lbr26669wyvnya1sh3x22r0cxm64jj7"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #t
#:cargo-inputs
(("rust-serde" ,rust-serde-1))))
(home-page "https://github.com/maciejhirsz/beef")
(synopsis "Faster, more compact implementation of Cow")
(description "This package provides faster, more compact implementation of
Cow.")
(license (list license:expat license:asl2.0))))
(define-public rust-bencher-0.1
(package
(name "rust-bencher")