mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-18 17:01:51 -05:00
gnu: Add rust-anstyle-1.
* gnu/packages/crates-io.scm (rust-anstyle-1): New variable. (rust-anstyle-0.2): Inherit from rust-anstyle-1.
This commit is contained in:
parent
3e01ee857a
commit
6ed8cbaf2b
1 changed files with 22 additions and 6 deletions
|
@ -3062,8 +3062,29 @@ (define-public rust-ansi-parser-0.6
|
|||
escape codes.")
|
||||
(license license:mpl2.0)))
|
||||
|
||||
(define-public rust-anstyle-1
|
||||
(package
|
||||
(name "rust-anstyle")
|
||||
(version "1.0.0")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "anstyle" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"0zbazbfqs4mfw93573f61iy8c78vbbv824m3w206bbljpy39mva1"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-development-inputs
|
||||
(("rust-lexopt" ,rust-lexopt-0.3))))
|
||||
(home-page "https://github.com/rust-cli/anstyle")
|
||||
(synopsis "ANSI text styling")
|
||||
(description "This package provides ANSI text styling.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-anstyle-0.2
|
||||
(package
|
||||
(inherit rust-anstyle-1)
|
||||
(name "rust-anstyle")
|
||||
(version "0.2.8")
|
||||
(source (origin
|
||||
|
@ -3073,14 +3094,9 @@ (define-public rust-anstyle-0.2
|
|||
(sha256
|
||||
(base32
|
||||
"10kdjcyks9hcvmhk44afagnrxi4pczg6jnldjdadzbi4kyi2wqah"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-development-inputs
|
||||
(("rust-lexopt" ,rust-lexopt-0.3))))
|
||||
(home-page "https://github.com/rust-cli/anstyle")
|
||||
(synopsis "ANSI text styling")
|
||||
(description "This package provides ANSI text styling.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
(("rust-lexopt" ,rust-lexopt-0.3))))))
|
||||
|
||||
(define-public rust-anstyle-parse-0.2
|
||||
(package
|
||||
|
|
Loading…
Reference in a new issue