mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-09 04:40:06 -05:00
gnu: Add rust-prettyplease-0.1.
* gnu/packages/crates-io.scm (rust-prettyplease-0.1): New variable.
This commit is contained in:
parent
725febb8f6
commit
2357035fe5
1 changed files with 23 additions and 0 deletions
|
@ -43234,6 +43234,29 @@ (define-public rust-pretty-env-logger-0.3
|
|||
("rust-chrono" ,rust-chrono-0.4)
|
||||
("rust-env-logger" ,rust-env-logger-0.6))))))
|
||||
|
||||
(define-public rust-prettyplease-0.1
|
||||
(package
|
||||
(name "rust-prettyplease")
|
||||
(version "0.1.23")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "prettyplease" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "0y2wbmflbkgp13ywd7qyq7hyi59x5zazmljnw8gg09wnfwak4zp9"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-inputs
|
||||
(("rust-proc-macro2" ,rust-proc-macro2-1)
|
||||
("rust-syn" ,rust-syn-1))
|
||||
#:cargo-development-inputs
|
||||
(("rust-syn" ,rust-syn-1))))
|
||||
(home-page "https://github.com/dtolnay/prettyplease")
|
||||
(synopsis "Minimal `syn` syntax tree pretty-printer")
|
||||
(description
|
||||
"This package provides a minimal `syn` syntax tree pretty-printer.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-prettytable-rs-0.8
|
||||
(package
|
||||
(name "rust-prettytable-rs")
|
||||
|
|
Loading…
Reference in a new issue