mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-28 23:32:24 -05:00
gnu: Add rust-generator-0.6.
* gnu/packages/crates-io.scm (rust-generator-0.6): New variable. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
ade2e5e722
commit
10d5ee693b
1 changed files with 28 additions and 0 deletions
|
@ -510,6 +510,34 @@ (define-public rust-bincode-1.1
|
|||
that uses Serde for transforming structs into bytes and vice versa!")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public rust-generator-0.6
|
||||
(package
|
||||
(name "rust-generator")
|
||||
(version "0.6.18")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "generator" version))
|
||||
(file-name
|
||||
(string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"0p4iq1n53dy72dhma02wfjrazf2hq2745f9si9yi7jxviks7c8l7"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:skip-build? #t
|
||||
#:cargo-inputs
|
||||
(("rust-libc" ,rust-libc-0.2)
|
||||
("rust-log" ,rust-log-0.4)
|
||||
("rust-winapi" ,rust-winapi-0.3))
|
||||
#:cargo-development-inputs
|
||||
(("rust-cc" ,rust-cc-1.0)
|
||||
("rust-rustc-version" ,rust-rustc-version-0.2))))
|
||||
(home-page "https://github.com/Xudong-Huang/generator-rs")
|
||||
(synopsis "Stackfull Generator Library in Rust")
|
||||
(description "Stackfull Generator Library in Rust.")
|
||||
(license (list license:asl2.0 license:expat))))
|
||||
|
||||
(define-public rust-bindgen-0.50
|
||||
(package
|
||||
(name "rust-bindgen")
|
||||
|
|
Loading…
Reference in a new issue