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.")
(license license:expat)))
(define-public rust-colored-1
(define-public rust-colored-2
(package
(name "rust-colored")
(version "1.9.3")
(version "2.0.0")
(source
(origin
(method url-fetch)
@ -8636,7 +8636,7 @@ colors.")
(string-append name "-" version ".tar.gz"))
(sha256
(base32
"0nbc1czs512h1k696y7glv1kjrb2b914zpxraic6q5fgv80wizzl"))))
"1gbcijscmznzy42rn213yp9ima7210zakgaqibgg1n441dsnyqdk"))))
(build-system cargo-build-system)
(arguments
`(#:tests? #f
@ -8660,6 +8660,21 @@ colors.")
"The most simple way to add colors in your terminal.")
(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
(package
(inherit rust-colored-1)