efraim pushed a commit to branch rust-team
in repository guix.
commit 78701f673309e9c2f5443b2ea3e6d784666d7fef
Author: Efraim Flashner <[email protected]>
AuthorDate: Wed Dec 25 12:21:40 2024 +0200
gnu: Add rust-termtree-0.5.
* gnu/packages/crates-io.scm (rust-termtree-0.5): New variable.
(rust-termtree-0.4): Inherit from rust-termtree-0.5.
Change-Id: I8e1ab9fc370b49223aba77510c05f899792837c2
---
gnu/packages/crates-io.scm | 22 +++++++++++++++++++---
1 file changed, 19 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index bec8720ee8..f2d71775ba 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -86858,23 +86858,39 @@ bindings are a small wrapper around the raw C
functions, which converts integer
return values to @code{std::io::Result} to indicate success or failure.")
(license license:expat)))
-(define-public rust-termtree-0.4
+(define-public rust-termtree-0.5
(package
(name "rust-termtree")
- (version "0.4.1")
+ (version "0.5.1")
(source
(origin
(method url-fetch)
(uri (crate-uri "termtree" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
- (base32 "0xkal5l2r3r9p9j90x35qy4npbdwxz4gskvbijs6msymaangas9k"))))
+ (base32 "10s610ax6nb70yi7xfmwcb6d3wi9sj5isd0m63gy2pizr2zgwl4g"))))
(build-system cargo-build-system)
+ (arguments
+ `(#:cargo-development-inputs (("rust-snapbox" ,rust-snapbox-0.6))))
(home-page "https://github.com/rust-cli/termtree")
(synopsis "Visualize tree-like data on the command-line")
(description "Visualize tree-like data on the command-line.")
(license license:expat)))
+(define-public rust-termtree-0.4
+ (package
+ (inherit rust-termtree-0.5)
+ (name "rust-termtree")
+ (version "0.4.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (crate-uri "termtree" version))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32 "0xkal5l2r3r9p9j90x35qy4npbdwxz4gskvbijs6msymaangas9k"))))
+ (arguments `())))
+
(define-public rust-termwiz-0.22
(package
(name "rust-termwiz")