gnu: Add rust-bytemuck-derive-1.
* gnu/packages/crates-io.scm (rust-bytemuck-derive-1): New variable.
This commit is contained in:
parent
319de44a09
commit
4501b4fd3f
1 changed files with 28 additions and 0 deletions
|
@ -2332,6 +2332,34 @@ in a byte slice, fast.")
|
||||||
"This package provides a crate for mucking around with piles of bytes.")
|
"This package provides a crate for mucking around with piles of bytes.")
|
||||||
(license license:zlib)))
|
(license license:zlib)))
|
||||||
|
|
||||||
|
(define-public rust-bytemuck-derive-1
|
||||||
|
(package
|
||||||
|
(name "rust-bytemuck-derive")
|
||||||
|
(version "1.0.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "bytemuck-derive" version))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1k59b6g2d87nf32qwhp73vng3al0zklxg64iiwf0pkxy74xf5ni8"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:skip-build? #t
|
||||||
|
#:cargo-inputs
|
||||||
|
(("rust-proc-macro2" ,rust-proc-macro2-1)
|
||||||
|
("rust-quote" ,rust-quote-1)
|
||||||
|
("rust-syn" ,rust-syn-1))
|
||||||
|
#:cargo-development-inputs
|
||||||
|
(("rust-bytemuck" ,rust-bytemuck-1))))
|
||||||
|
(home-page "https://github.com/Lokathor/bytemuck")
|
||||||
|
(synopsis "Derive proc-macros for @code{bytemuck}")
|
||||||
|
(description
|
||||||
|
"This package derives proc-macros for the @code{bytemuck} crate.")
|
||||||
|
(license
|
||||||
|
(list license:zlib license:asl2.0 license:expat))))
|
||||||
|
|
||||||
(define-public rust-byteorder-1.3
|
(define-public rust-byteorder-1.3
|
||||||
(package
|
(package
|
||||||
(name "rust-byteorder")
|
(name "rust-byteorder")
|
||||||
|
|
Reference in a new issue