mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-21 02:03:29 -05:00
gnu: Add rust-fehler-1.
* gnu/packages/crates-io.scm (rust-fehler-1): New variable.
This commit is contained in:
parent
fa1ec3bc34
commit
35af6cd4bf
1 changed files with 20 additions and 0 deletions
|
@ -22641,6 +22641,26 @@ (define-public rust-feedly-api-0.4
|
||||||
;; No copyright headers in the source code. LICENSE indicates gpl3.
|
;; No copyright headers in the source code. LICENSE indicates gpl3.
|
||||||
(license license:gpl3)))
|
(license license:gpl3)))
|
||||||
|
|
||||||
|
(define-public rust-fehler-1
|
||||||
|
(package
|
||||||
|
(name "rust-fehler")
|
||||||
|
(version "1.0.0")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "fehler" version))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0d9nk0nimhrqhlwsm42kmg6bwhfqscnfddj70xawsa50kgj9ywnm"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:cargo-inputs (("rust-fehler-macros" ,rust-fehler-macros-1))))
|
||||||
|
(home-page "https://github.com/withoutboats/fehler")
|
||||||
|
(synopsis "Library for error-handling syntax in Rust")
|
||||||
|
(description
|
||||||
|
"This package provides a library for error-handling syntax in Rust.")
|
||||||
|
(license (list license:expat license:asl2.0))))
|
||||||
|
|
||||||
(define-public rust-fehler-macros-1
|
(define-public rust-fehler-macros-1
|
||||||
(package
|
(package
|
||||||
(name "rust-fehler-macros")
|
(name "rust-fehler-macros")
|
||||||
|
|
Loading…
Reference in a new issue