gnu: Add rust-object-0.29.
* gnu/packages/crates-io.scm (rust-object-0.29): New variable.
This commit is contained in:
parent
cce608d256
commit
706d1749a3
1 changed files with 31 additions and 0 deletions
|
@ -39460,6 +39460,37 @@ (define-public rust-objc-test-utils-0.0
|
|||
"This package provides utilities for testing Objective-C interop.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public rust-object-0.29
|
||||
(package
|
||||
(name "rust-object")
|
||||
(version "0.29.0")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "object" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"0lzblxwxcih7j4z2cfx9094caax97hlfm9n0y5hlavda6cn8n591"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:skip-build? #t
|
||||
#:cargo-inputs
|
||||
(("rust-compiler-builtins" ,rust-compiler-builtins-0.1)
|
||||
("rust-crc32fast" ,rust-crc32fast-1)
|
||||
("rust-flate2" ,rust-flate2-1)
|
||||
("rust-hashbrown" ,rust-hashbrown-0.12)
|
||||
("rust-indexmap" ,rust-indexmap-1)
|
||||
("rust-memchr" ,rust-memchr-2)
|
||||
("rust-rustc-std-workspace-alloc" ,rust-rustc-std-workspace-alloc-1)
|
||||
("rust-rustc-std-workspace-core" ,rust-rustc-std-workspace-core-1)
|
||||
("rust-wasmparser" ,rust-wasmparser-0.57))))
|
||||
(home-page "https://github.com/gimli-rs/object")
|
||||
(synopsis "Unified interface for reading and writing object file formats")
|
||||
(description
|
||||
"This package provides a unified interface for reading and writing object
|
||||
file formats.")
|
||||
(license (list license:asl2.0 license:expat))))
|
||||
|
||||
(define-public rust-object-0.28
|
||||
(package
|
||||
(name "rust-object")
|
||||
|
|
Loading…
Reference in a new issue