mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: Add rust-lscolors-0.13.
* gnu/packages/crates-io.scm (rust-lscolors-0.13): New variable. (rust-lscolors-0.7): Inherit from rust-lscolors-0.13.
This commit is contained in:
parent
cdee2a3b61
commit
7bce48cf38
1 changed files with 26 additions and 7 deletions
|
@ -33003,8 +33003,33 @@ (define-public rust-lru-cache-0.1
|
|||
key-value pairs.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-lscolors-0.13
|
||||
(package
|
||||
(name "rust-lscolors")
|
||||
(version "0.13.0")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "lscolors" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "1wnxs5d004fx71apvh9124xqky0qjjmpibag24km7bvvss2xrpn2"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-inputs
|
||||
(("rust-ansi-term" ,rust-ansi-term-0.12)
|
||||
("rust-crossterm" ,rust-crossterm-0.25)
|
||||
("rust-nu-ansi-term" ,rust-nu-ansi-term-0.46))
|
||||
#:cargo-development-inputs
|
||||
(("rust-tempfile" ,rust-tempfile-3))))
|
||||
(home-page "https://github.com/sharkdp/lscolors")
|
||||
(synopsis "Colorize paths using the LS_COLORS environment variable")
|
||||
(description
|
||||
"Colorize paths using the LS_COLORS environment variable.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-lscolors-0.7
|
||||
(package
|
||||
(inherit rust-lscolors-0.13)
|
||||
(name "rust-lscolors")
|
||||
(version "0.7.1")
|
||||
(source
|
||||
|
@ -33016,17 +33041,11 @@ (define-public rust-lscolors-0.7
|
|||
(sha256
|
||||
(base32
|
||||
"0vn1824lagf0xdv5rxyl7m9fbrcylyjibmnd4634dnn98m68jjyj"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-inputs
|
||||
(("rust-ansi-term" ,rust-ansi-term-0.12))
|
||||
#:cargo-development-inputs
|
||||
(("rust-tempfile" ,rust-tempfile-3))))
|
||||
(home-page "https://github.com/sharkdp/lscolors")
|
||||
(synopsis "Colorize paths using the LS_COLORS environment variable")
|
||||
(description
|
||||
"Colorize paths using the LS_COLORS environment variable.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
(("rust-tempfile" ,rust-tempfile-3))))))
|
||||
|
||||
(define-public rust-lsp-types-0.91
|
||||
(package
|
||||
|
|
Loading…
Reference in a new issue