1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-15 03:20:43 +02:00

gnu: Add rust-ptree-0.4.

* gnu/packages/crates-io.scm (rust-ptree-0.4): New variable.

Change-Id: I36a91b18444abf6af77770a42a80c4f75fa9e7a1
This commit is contained in:
Efraim Flashner 2025-01-03 11:43:31 +02:00
parent eadfd861b6
commit 5f4c104766
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -57467,6 +57467,33 @@ pointers:
(description "This package provides macros for the ptr_meta API.")
(license license:expat)))
(define-public rust-ptree-0.4
(package
(name "rust-ptree")
(version "0.4.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "ptree" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "0w72k0svlj8ihbf7m7ivay7rpv38xz9ad5a06isyqsiiddwq1pm0"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #t ; Cut the dependency graph.
#:cargo-inputs (("rust-ansi-term" ,rust-ansi-term-0.12)
("rust-atty" ,rust-atty-0.2)
("rust-config" ,rust-config-0.11)
("rust-directories" ,rust-directories-4)
("rust-petgraph" ,rust-petgraph-0.6)
("rust-serde" ,rust-serde-1)
("rust-serde-value" ,rust-serde-value-0.7)
("rust-tint" ,rust-tint-1))))
(home-page "https://gitlab.com/Noughmad/ptree")
(synopsis "Pretty-print tree-like structures")
(description "This package provides pretty-print tree-like structures.")
(license (list license:expat license:asl2.0))))
(define-public rust-ptyprocess-0.4
(package
(name "rust-ptyprocess")