mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-19 22:16:32 +01:00
gnu: Add rust-testing-table-0.1.
* gnu/packages/crates-io.scm (rust-testing-table-0.1): New variable. Change-Id: Ie297bed64ee07348d825627b377e3a7095030b5b
This commit is contained in:
parent
d9dfe614d7
commit
71816dcc94
1 changed files with 27 additions and 0 deletions
|
@ -83268,6 +83268,33 @@ (define-public rust-testing-logger-0.1
|
|||
(description "Supports writing tests to verify `log` crate calls.")
|
||||
(license license:bsd-3)))
|
||||
|
||||
(define-public rust-testing-table-0.1
|
||||
(package
|
||||
(name "rust-testing-table")
|
||||
(version "0.1.1")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "testing_table" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "1wl7i9q1hyaabcajh8pf8pflazazgpb60s61xjl9fv1xdvgbzd9y"))
|
||||
(modules '((guix build utils)))
|
||||
(snippet
|
||||
'(begin (substitute* "Cargo.toml"
|
||||
(("\"=([[:digit:]]+(\\.[[:digit:]]+)*)" _ version)
|
||||
(string-append "\"^" version)))))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-inputs (("rust-ansitok" ,rust-ansitok-0.2)
|
||||
("rust-unicode-width" ,rust-unicode-width-0.1))))
|
||||
(home-page "https://github.com/zhiburt/tabled")
|
||||
(synopsis "Library for pretty print tables of Rust `struct`s and `enum`s")
|
||||
(description
|
||||
"This package provides an easy to use library for pretty print tables of
|
||||
Rust @code{struct}s and @code{enum}s.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public rust-text-block-macros-0.1
|
||||
(package
|
||||
(name "rust-text-block-macros")
|
||||
|
|
Loading…
Reference in a new issue