mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-20 14:47:20 +01:00
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>
This commit is contained in:
parent
386f3e46ad
commit
2997d267ba
1 changed files with 26 additions and 0 deletions
|
@ -2545,6 +2545,32 @@ (define-public rust-errno-dragonfly-0.1
|
|||
"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")
|
||||
|
|
Loading…
Reference in a new issue