guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 5ceb492006bc4273347c9836ed06a66d1ab82403
Author: Danny Milosavljevic <[email protected]>
AuthorDate: Sat May 31 16:40:11 2025 +0200
gnu: Add [email protected].
* gnu/packages/crates-io.scm (rust-xmas-elf-0.9): New variable.
Change-Id: Iffd30079b6672f963d9c70a7036211918ea96769
---
gnu/packages/crates-io.scm | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 10187aa258..808e70fe5d 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -23438,6 +23438,30 @@ from the main thread.")
(description "Set a type's minimum alignment with const generics.")
(license (list license:expat license:asl2.0))))
+(define-public rust-xmas-elf-0.9
+ (package
+ (name "rust-xmas-elf")
+ (version "0.9.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (crate-uri "xmas-elf" version))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32 "1inias7h1cv4zh3szk46byiqhnzm5zc7658q1brzfhl3wwbrii22"))))
+ (build-system cargo-build-system)
+ (arguments
+ `(#:skip-build? #t
+ #:cargo-inputs (("rust-flate2" ,rust-flate2-1)
+ ("rust-zero" ,rust-zero-0.1))))
+ (home-page "https://github.com/nrc/xmas-elf")
+ (synopsis
+ "Library for parsing and navigating ELF data")
+ (description
+ "This package provides a library for parsing and navigating ELF data;
+the library is zero-allocation, type-safe.")
+ (license (list license:asl2.0 license:expat))))
+
(define-public rust-elf-0.0.10
(package
(name "rust-elf")