diff options
author | Zheng Junjie <873216071@qq.com> | 2021-01-25 13:53:37 +0800 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2021-02-05 22:08:47 +0100 |
commit | f6dfa724ebce2fc132c1e99cb5e885bb7869ed5a (patch) | |
tree | 3c14dba9f9bddaa6022308ce7ca2955d2bc90de9 | |
parent | 91f61a7624338105093e91efce6f8decb5f19638 (diff) | |
download | guix-f6dfa724ebce2fc132c1e99cb5e885bb7869ed5a.tar.gz |
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>
-rw-r--r-- | gnu/packages/crates-io.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 6780d9f6ab..9eb28bce11 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -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") |