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:
Efraim Flashner 2023-05-22 16:37:32 +03:00
parent 3e01ee857a
commit 6ed8cbaf2b
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -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