mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-15 15:37:54 -05:00
gnu: Add rust-failure-derive-0.1.
* gnu/packages/crates-io.scm (rust-failure-derive-0.1): New variable. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
ad6f956c66
commit
a68b5dc379
1 changed files with 28 additions and 0 deletions
|
@ -1906,6 +1906,34 @@ (define-public rust-erased-serde-0.3
|
||||||
"Type-erased Serialize and Serializer traits.")
|
"Type-erased Serialize and Serializer traits.")
|
||||||
(license (list license:asl2.0 license:expat))))
|
(license (list license:asl2.0 license:expat))))
|
||||||
|
|
||||||
|
(define-public rust-failure-derive-0.1
|
||||||
|
(package
|
||||||
|
(name "rust-failure-derive")
|
||||||
|
(version "0.1.5")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "failure_derive" version))
|
||||||
|
(file-name
|
||||||
|
(string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1q97n7dp51j5hndzic9ng2fgn6f3z5ya1992w84l7vypby8n647a"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:skip-build? #t
|
||||||
|
#:cargo-inputs
|
||||||
|
(("rust-proc-macro2" ,rust-proc-macro2-0.4)
|
||||||
|
("rust-quote" ,rust-quote-1.0)
|
||||||
|
("rust-syn" ,rust-syn-0.15)
|
||||||
|
("rust-synstructure" ,rust-synstructure-0.10))
|
||||||
|
#:cargo-development-inputs
|
||||||
|
(("rust-failure" ,rust-failure-0.1))))
|
||||||
|
(home-page "https://rust-lang-nursery.github.io/failure/")
|
||||||
|
(synopsis "Derives for the failure crate")
|
||||||
|
(description "Derives for the failure crate.")
|
||||||
|
(license (list license:asl2.0 license:expat))))
|
||||||
|
|
||||||
(define-public rust-fallible-iterator-0.2
|
(define-public rust-fallible-iterator-0.2
|
||||||
(package
|
(package
|
||||||
(name "rust-fallible-iterator")
|
(name "rust-fallible-iterator")
|
||||||
|
|
Loading…
Reference in a new issue