diff options
author | Steve George <steve@futurile.net> | 2024-10-02 09:30:05 +0100 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2024-11-28 11:04:49 +0200 |
commit | 1c22d17d190ad393fe845f6bd4cf92328a7fa89f (patch) | |
tree | e98fed6e9aaccffe20b53476f00c538123d1bb29 /gnu | |
parent | 828c6140cf2ecd324071e3f107bb6bd1d400236a (diff) | |
download | guix-1c22d17d190ad393fe845f6bd4cf92328a7fa89f.tar.gz guix-1c22d17d190ad393fe845f6bd4cf92328a7fa89f.zip |
gnu: Add rust-tabled-0.15.
* gnu/packages/crates-io.scm (rust-tabled-0.15): New variable.
(rust-tabled-0.14): Inherit from rust-tabled-0.15.
Change-Id: If583f8a020435323005ed4412ddef62f61d1d223
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/crates-io.scm | 36 |
1 files changed, 30 insertions, 6 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 32bdb5ea89..3739d9d2ab 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -79469,8 +79469,37 @@ well.") #:cargo-development-inputs (("rust-itertools" ,rust-itertools-0.9)))))) +(define-public rust-tabled-0.15 + (package + (name "rust-tabled") + (version "0.15.0") + (source + (origin + (method url-fetch) + (uri (crate-uri "tabled" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "03h5j83pp5pp0hbf6dh1fvh8pwhzj3qvmaj8d8cra54jic68p6ac")))) + (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-papergrid" ,rust-papergrid-0.11) + ("rust-tabled-derive" ,rust-tabled-derive-0.7) + ("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 + "Library for pretty printing tables of Rust `struct`s and `enum`s") + (description "This package provides a library for pretty printing tables of +Rust @code{struct}s and @code{enum}s.") + (license license:expat))) + (define-public rust-tabled-0.14 (package + (inherit rust-tabled-0.15) (name "rust-tabled") (version "0.14.0") (source @@ -79488,12 +79517,7 @@ well.") ("rust-papergrid" ,rust-papergrid-0.10) ("rust-tabled-derive" ,rust-tabled-derive-0.6) ("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 "Library for pretty print tables of Rust `struct`s and `enum`s") - (description "This package provides a library for pretty print tables of -Rust @code{struct}s and @code{enum}s.") - (license license:expat))) + #:cargo-development-inputs (("rust-owo-colors" ,rust-owo-colors-3)))))) (define-public rust-tabled-derive-0.7 (package |