me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-either-1.5.

* gnu/packages/crates-io.scm (rust-either-1.5): New variable.

Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
master
John Soo 2019-12-13 23:09:01 -08:00 committed by Efraim Flashner
parent 472685a7e9
commit 9b114884c8
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 25 additions and 0 deletions

View File

@ -888,6 +888,31 @@ floating-point primitives to an @code{io::Write}.")
(base32 (base32
"0g96cap6si1g6wi62hsdk2fnj3sf5vd4i97zj6163j8hhnsl3n0d")))))) "0g96cap6si1g6wi62hsdk2fnj3sf5vd4i97zj6163j8hhnsl3n0d"))))))
(define-public rust-either-1.5
(package
(name "rust-either")
(version "1.5.2")
(source
(origin
(method url-fetch)
(uri (crate-uri "either" version))
(file-name
(string-append name "-" version ".tar.gz"))
(sha256
(base32
"0yyggfd5yq9hyyp0bd5jj0fgz3rwws42d19ri0znxwwqs3hcy9sm"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #t
#:cargo-inputs (("rust-serde" ,rust-serde-1.0))))
(home-page "https://github.com/bluss/either")
(synopsis
"Enum @code{Either} with variants @code{Left} and @code{Right}")
(description
"The enum @code{Either} with variants @code{Left} and
@code{Right} is a general purpose sum type with two cases.")
(license (list license:expat license:asl2.0))))
(define-public rust-env-logger-0.6 (define-public rust-env-logger-0.6
(package (package
(name "rust-env-logger") (name "rust-env-logger")