mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-23 19:19:20 -05:00
gnu: rust-beef-0.5: Update to 0.5.2.
* gnu/packages/crates-io.scm (rust-beef-0.5): Update to 0.5.2. [arguments]: Don't skip build. Skip the tests. [cargo-development-inputs]: Add rust-serde-derive-1, rust-serde-json-1. Change-Id: Iff02249a15cefe558a70132277869f2f5c780215
This commit is contained in:
parent
9df2d510fc
commit
7e64df06c9
1 changed files with 6 additions and 5 deletions
|
@ -5846,19 +5846,20 @@ (define-public rust-bat-0.18
|
||||||
(define-public rust-beef-0.5
|
(define-public rust-beef-0.5
|
||||||
(package
|
(package
|
||||||
(name "rust-beef")
|
(name "rust-beef")
|
||||||
(version "0.5.0")
|
(version "0.5.2")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (crate-uri "beef" version))
|
(uri (crate-uri "beef" version))
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "02blba0j192l0374kqwn8rjsc8aifj43xi26v142ijpjim1f4dk7"))))
|
(base32 "1c95lbnhld96iwwbyh5kzykbpysq0fnjfhwxa1mhap5qxgrl30is"))))
|
||||||
(build-system cargo-build-system)
|
(build-system cargo-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:skip-build? #t
|
`(#:tests? #f ; Doc tests segfault.
|
||||||
#:cargo-inputs
|
#:cargo-inputs (("rust-serde" ,rust-serde-1))
|
||||||
(("rust-serde" ,rust-serde-1))))
|
#:cargo-development-inputs (("rust-serde-derive" ,rust-serde-derive-1)
|
||||||
|
("rust-serde-json" ,rust-serde-json-1))))
|
||||||
(home-page "https://github.com/maciejhirsz/beef")
|
(home-page "https://github.com/maciejhirsz/beef")
|
||||||
(synopsis "Faster, more compact implementation of Cow")
|
(synopsis "Faster, more compact implementation of Cow")
|
||||||
(description "This package provides faster, more compact implementation of
|
(description "This package provides faster, more compact implementation of
|
||||||
|
|
Loading…
Reference in a new issue