me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-error-chain-0.12.

* gnu/packages/crates-io.scm (rust-error-chain-0.12): New variable.

Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
master
John Soo 2019-12-19 10:07:37 -08:00 committed by Efraim Flashner
parent 386f3e46ad
commit 2997d267ba
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 26 additions and 0 deletions

View File

@ -2545,6 +2545,32 @@ is configured via an environment variable.")
"Exposes errno functionality to stable Rust on DragonFlyBSD.")
(license license:expat)))
(define-public rust-error-chain-0.12
(package
(name "rust-error-chain")
(version "0.12.1")
(source
(origin
(method url-fetch)
(uri (crate-uri "error-chain" version))
(file-name
(string-append name "-" version ".tar.gz"))
(sha256
(base32
"1ndpw1ny2kxqpw6k1shq8k56z4vfpk4xz9zr8ay988k0rffrxd1s"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #t
#:cargo-inputs
(("rust-backtrace" ,rust-backtrace-0.3))
#:cargo-development-inputs
(("rust-version-check" ,rust-version-check-0.9))))
(home-page "https://github.com/rust-lang-nursery/error-chain")
(synopsis "Yet another error boilerplate library")
(description
"Yet another error boilerplate library.")
(license (list license:asl2.0 license:expat))))
(define-public rust-fake-simd-0.1
(package
(name "rust-fake-simd")