mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-13 18:36:14 -05:00
gnu: Add rust-no-panic-0.1.
* gnu/packages/crates-io.scm (rust-no-panic-0.1): New variable. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
96956ce8e2
commit
297bd74002
1 changed files with 28 additions and 0 deletions
|
@ -6703,6 +6703,34 @@ (define-public rust-nix-0.15
|
|||
"Rust friendly bindings to *nix APIs.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public rust-no-panic-0.1
|
||||
(package
|
||||
(name "rust-no-panic")
|
||||
(version "0.1.12")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "no-panic" version))
|
||||
(file-name
|
||||
(string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"0xan5v9ac1aklinc8aw16raq36pb4idjrl502np8gy32gfs6s751"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-inputs
|
||||
(("rust-proc-macro2" ,rust-proc-macro2-1.0)
|
||||
("rust-quote" ,rust-quote-1.0)
|
||||
("rust-syn" ,rust-syn-1.0))
|
||||
#:cargo-development-inputs
|
||||
(("rust-tempfile" ,rust-tempfile-3.1))))
|
||||
(home-page "https://github.com/dtolnay/no-panic")
|
||||
(synopsis "Prove a function can't ever panic")
|
||||
(description
|
||||
"This package provides a rust attribute macro to require that the compiler
|
||||
prove a function can't ever panic.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-nodrop-0.1
|
||||
(package
|
||||
(name "rust-nodrop")
|
||||
|
|
Loading…
Reference in a new issue