me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-colored-2.

* gnu/packages/crates-io.scm (rust-colored-2): New variable.
(rust-colored-1): Inherit from rust-colored-2.

Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
master
Domagoj Stolfa 2021-07-11 15:55:57 +01:00 committed by Efraim Flashner
parent a2c766d73d
commit c2967eae4e
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 18 additions and 3 deletions

View File

@ -8624,10 +8624,10 @@ diagnostics easy and relatively painless for everyone!")
colors.") colors.")
(license license:expat))) (license license:expat)))
(define-public rust-colored-1 (define-public rust-colored-2
(package (package
(name "rust-colored") (name "rust-colored")
(version "1.9.3") (version "2.0.0")
(source (source
(origin (origin
(method url-fetch) (method url-fetch)
@ -8636,7 +8636,7 @@ colors.")
(string-append name "-" version ".tar.gz")) (string-append name "-" version ".tar.gz"))
(sha256 (sha256
(base32 (base32
"0nbc1czs512h1k696y7glv1kjrb2b914zpxraic6q5fgv80wizzl")))) "1gbcijscmznzy42rn213yp9ima7210zakgaqibgg1n441dsnyqdk"))))
(build-system cargo-build-system) (build-system cargo-build-system)
(arguments (arguments
`(#:tests? #f `(#:tests? #f
@ -8660,6 +8660,21 @@ colors.")
"The most simple way to add colors in your terminal.") "The most simple way to add colors in your terminal.")
(license license:mpl2.0))) (license license:mpl2.0)))
(define-public rust-colored-1
(package
(inherit rust-colored-2)
(name "rust-colored")
(version "1.9.3")
(source
(origin
(method url-fetch)
(uri (crate-uri "colored" version))
(file-name
(string-append name "-" version ".tar.gz"))
(sha256
(base32
"0nbc1czs512h1k696y7glv1kjrb2b914zpxraic6q5fgv80wizzl"))))))
(define-public rust-colored-1.9.1 (define-public rust-colored-1.9.1
(package (package
(inherit rust-colored-1) (inherit rust-colored-1)