me
/
guix
Archived
1
0
Fork 0

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.
master
Efraim Flashner 2023-03-09 16:35:24 +02:00
parent cdee2a3b61
commit 7bce48cf38
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 26 additions and 7 deletions

View File

@ -33003,8 +33003,33 @@ image together with its neighboring pixels.")
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 @@ key-value pairs.")
(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