mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: Add rust-capnp-0.10.
* gnu/packages/crates-io.scm (rust-capnp-0.10): New variable.
This commit is contained in:
parent
6b4db2a21e
commit
56d1d517f0
1 changed files with 24 additions and 0 deletions
|
@ -2401,6 +2401,30 @@ (define-public rust-calloop-0.4
|
||||||
"This package provides a callback-based event loop")
|
"This package provides a callback-based event loop")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public rust-capnp-0.10
|
||||||
|
(package
|
||||||
|
(name "rust-capnp")
|
||||||
|
(version "0.10.3")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "capnp" version))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32 "17hsnmlcrzksjjpwpz51y8g36xzq8042i2cwns0lsg7rixfw2rxq"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:cargo-inputs
|
||||||
|
(("rust-futures" ,rust-futures-0.1)
|
||||||
|
("rust-quickcheck" ,rust-quickcheck-0.2))
|
||||||
|
#:cargo-development-inputs
|
||||||
|
(("rust-quickcheck" ,rust-quickcheck-0.2))))
|
||||||
|
(home-page "https://github.com/capnproto/capnproto-rust")
|
||||||
|
(synopsis "Runtime library for Cap'n Proto data encoding")
|
||||||
|
(description "This package provides a runtime library for Cap'n Proto data
|
||||||
|
encoding.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public rust-caps-0.3
|
(define-public rust-caps-0.3
|
||||||
(package
|
(package
|
||||||
(name "rust-caps")
|
(name "rust-caps")
|
||||||
|
|
Loading…
Reference in a new issue