mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-31 16:42:38 -05:00
gnu: Add rust-indenter.
* gnu/packages/crates-io.scm (rust-indenter-0.3): New variable.
This commit is contained in:
parent
01a3139a05
commit
3d553888c6
1 changed files with 20 additions and 0 deletions
|
@ -27518,6 +27518,26 @@ (define-public rust-include-flate-codegen-exports-0.1
|
|||
crate.")
|
||||
(license license:asl2.0)))
|
||||
|
||||
(define-public rust-indenter-0.3
|
||||
(package
|
||||
(name "rust-indenter")
|
||||
(version "0.3.3")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "indenter" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "10y6i6y4ls7xsfsc1r3p5j2hhbxhaqnk5zzk8aj52b14v05ba8yf"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments '(#:skip-build? #t))
|
||||
(home-page "https://github.com/yaahc/indenter")
|
||||
(synopsis "Display trait indentation helper for errors")
|
||||
(description
|
||||
"This package provides a few wrappers for the @code{fmt::Write} object
|
||||
that efficiently appends and removes common indentation after every newline.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-indexmap-1
|
||||
(package
|
||||
(name "rust-indexmap")
|
||||
|
|
Loading…
Reference in a new issue