mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-01 07:16:39 +01:00
gnu: Add rust-papergrid-0.11.
* gnu/packages/crates-io.scm (rust-papergrid-0.11): New variable. (rust-papergrid-0.10): Inherit from rust-papergrid-0.11. Change-Id: Id7a6ab5c08d130221b9168e4b90449955d555c3e
This commit is contained in:
parent
2bc704ba20
commit
c35a88f1a1
1 changed files with 28 additions and 5 deletions
|
@ -51685,8 +51685,35 @@ (define-public rust-pandoc-0.8
|
|||
executable.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-papergrid-0.11
|
||||
(package
|
||||
(name "rust-papergrid")
|
||||
(version "0.11.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "papergrid" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "1yzppnq3v1ivwqbrp4f7b13ijxirfykb64072vwngxsf083krm4s"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:tests? #f ; use of undeclared crate or module `testing_table`
|
||||
#:cargo-inputs (("rust-ansi-str" ,rust-ansi-str-0.8)
|
||||
("rust-ansitok" ,rust-ansitok-0.2)
|
||||
("rust-bytecount" ,rust-bytecount-0.6)
|
||||
("rust-fnv" ,rust-fnv-1)
|
||||
("rust-unicode-width" ,rust-unicode-width-0.1))
|
||||
#:cargo-development-inputs (("rust-owo-colors" ,rust-owo-colors-3))))
|
||||
(home-page "https://github.com/zhiburt/tabled")
|
||||
(synopsis "Core library to print a table")
|
||||
(description
|
||||
"Papergrid is a core library to print a table.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public rust-papergrid-0.10
|
||||
(package
|
||||
(inherit rust-papergrid-0.11)
|
||||
(name "rust-papergrid")
|
||||
(version "0.10.0")
|
||||
(source
|
||||
|
@ -51704,11 +51731,7 @@ (define-public rust-papergrid-0.10
|
|||
("rust-bytecount" ,rust-bytecount-0.6)
|
||||
("rust-fnv" ,rust-fnv-1)
|
||||
("rust-unicode-width" ,rust-unicode-width-0.1))
|
||||
#:cargo-development-inputs (("rust-owo-colors" ,rust-owo-colors-3))))
|
||||
(home-page "https://github.com/zhiburt/tabled")
|
||||
(synopsis "Core library to print a table")
|
||||
(description "Papergrid is a core library to print a table.")
|
||||
(license license:expat)))
|
||||
#:cargo-development-inputs (("rust-owo-colors" ,rust-owo-colors-3))))))
|
||||
|
||||
(define-public rust-parasailors-0.3
|
||||
(package
|
||||
|
|
Loading…
Reference in a new issue