mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-19 09:22:05 -05:00
gnu: Add rust-gimli-0.23.
* gnu/packages/crates-io.scm (rust-gimli-0.23): New variable. (rust-gimli-0.20): Inherit from above.
This commit is contained in:
parent
8cc3a16cbb
commit
8e54e5243b
1 changed files with 30 additions and 7 deletions
|
@ -16048,8 +16048,37 @@ (define-public rust-ghash-0.2
|
|||
(("rust-polyval" ,rust-polyval-0.3)
|
||||
("rust-zeroize" ,rust-zeroize-1))))))
|
||||
|
||||
(define-public rust-gimli-0.23
|
||||
(package
|
||||
(name "rust-gimli")
|
||||
(version "0.23.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "gimli" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "1km657nwcrb0pnv7v0ldhgl9y8s889y2j9jckmws8k2i8bhkyl7n"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:skip-build? #t
|
||||
#:cargo-inputs
|
||||
(("rust-compiler-builtins" ,rust-compiler-builtins-0.1)
|
||||
("rust-fallible-iterator" ,rust-fallible-iterator-0.2)
|
||||
("rust-indexmap" ,rust-indexmap-1)
|
||||
("rust-rustc-std-workspace-alloc" ,rust-rustc-std-workspace-alloc-1)
|
||||
("rust-rustc-std-workspace-core" ,rust-rustc-std-workspace-core-1)
|
||||
("rust-stable-deref-trait" ,rust-stable-deref-trait-1))))
|
||||
(home-page "https://github.com/gimli-rs/gimli")
|
||||
(synopsis "Library for reading and writing the DWARF debugging format")
|
||||
(description
|
||||
"This package provides a library for reading and writing the DWARF
|
||||
debugging format.")
|
||||
(license (list license:asl2.0 license:expat))))
|
||||
|
||||
(define-public rust-gimli-0.20
|
||||
(package
|
||||
(inherit rust-gimli-0.23)
|
||||
(name "rust-gimli")
|
||||
(version "0.20.0")
|
||||
(source
|
||||
|
@ -16061,7 +16090,6 @@ (define-public rust-gimli-0.20
|
|||
(sha256
|
||||
(base32
|
||||
"0cz6wg1niwfqf0mk28igsdnsm92cs57cai9jpzdmvw6hma863pc1"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:skip-build? #t
|
||||
#:cargo-inputs
|
||||
|
@ -16072,12 +16100,7 @@ (define-public rust-gimli-0.20
|
|||
,rust-stable-deref-trait-1)
|
||||
("rust-smallvec" ,rust-smallvec-1)
|
||||
("rust-indexmap" ,rust-indexmap-1)
|
||||
("rust-byteorder" ,rust-byteorder-1))))
|
||||
(home-page "https://github.com/gimli-rs/gimli")
|
||||
(synopsis "Library for reading and writing the DWARF debugging format")
|
||||
(description
|
||||
"This package provides a library for reading and writing the DWARF debugging format.")
|
||||
(license (list license:asl2.0 license:expat))))
|
||||
("rust-byteorder" ,rust-byteorder-1))))))
|
||||
|
||||
(define-public rust-gimli-0.18
|
||||
(package
|
||||
|
|
Loading…
Reference in a new issue