mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: Add rust-flatbuffers-2.
* gnu/packages/crates-io.scm (rust-flatbuffers-2): New variable. (rust-flatbuffers-0.8): Inherit from above.
This commit is contained in:
parent
eb9ae642d4
commit
e832c3325f
1 changed files with 22 additions and 3 deletions
|
@ -16284,17 +16284,17 @@ (define-public rust-flamer-0.3
|
|||
"A procedural macro to insert @code{flame::start_guard(_)} calls.")
|
||||
(license license:asl2.0)))
|
||||
|
||||
(define-public rust-flatbuffers-0.8
|
||||
(define-public rust-flatbuffers-2
|
||||
(package
|
||||
(name "rust-flatbuffers")
|
||||
(version "0.8.4")
|
||||
(version "2.0.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "flatbuffers" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "0sc0ngk9xim7xgqydx36xz4a1sqxq2fv7fmqn6z76vbx5cs05if3"))))
|
||||
(base32 "1xp5ppif0hvgh9kfvy1199gdmjc3dw1517022l1x3ynpphw5fk7g"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:skip-build? #t
|
||||
|
@ -16308,6 +16308,25 @@ (define-public rust-flatbuffers-0.8
|
|||
"This crates provides FlatBuffers runtime serialization library.")
|
||||
(license license:asl2.0)))
|
||||
|
||||
(define-public rust-flatbuffers-0.8
|
||||
(package
|
||||
(inherit rust-flatbuffers-2)
|
||||
(name "rust-flatbuffers")
|
||||
(version "0.8.4")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "flatbuffers" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "0sc0ngk9xim7xgqydx36xz4a1sqxq2fv7fmqn6z76vbx5cs05if3"))))
|
||||
(arguments
|
||||
`(#:skip-build? #t
|
||||
#:cargo-inputs
|
||||
(("rust-bitflags" ,rust-bitflags-1)
|
||||
("rust-smallvec" ,rust-smallvec-1)
|
||||
("rust-thiserror" ,rust-thiserror-1))))))
|
||||
|
||||
(define-public rust-flate2-1
|
||||
(package
|
||||
(name "rust-flate2")
|
||||
|
|
Loading…
Reference in a new issue