mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-28 07:12:30 -05:00
gnu: Add rust-varbincode-0.1.
* gnu/packages/crates-io.scm (rust-varbincode-0.1): New variable. Change-Id: I067935391fdb5f094cecf30909fcc3e56435dfaf Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
04fba2ffac
commit
4eb6591282
1 changed files with 24 additions and 0 deletions
|
@ -83073,6 +83073,30 @@ (define-public rust-value-trait-0.8
|
|||
(description "This package provides traits to deal with JSONesque values.")
|
||||
(license (list license:asl2.0 license:expat))))
|
||||
|
||||
(define-public rust-varbincode-0.1
|
||||
(package
|
||||
(name "rust-varbincode")
|
||||
(version "0.1.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "varbincode" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "17vgwalm7a1lryjj565p4rnx5h3hr8vwm5504r92s7j41f8gl4mp"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-inputs (("rust-byteorder" ,rust-byteorder-1)
|
||||
("rust-leb128" ,rust-leb128-0.2)
|
||||
("rust-serde" ,rust-serde-1))
|
||||
#:cargo-development-inputs (("rust-serde-derive" ,rust-serde-derive-1))))
|
||||
(home-page "https://github.com/wez/varbincode")
|
||||
(synopsis "Binary encoder and decoder with variable length integer")
|
||||
(description
|
||||
"This package provides a binary encoder / decoder with variable length
|
||||
integer encoding implementation in Rust.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public rust-vcpkg-0.2
|
||||
(package
|
||||
(name "rust-vcpkg")
|
||||
|
|
Loading…
Reference in a new issue