efraim pushed a commit to branch rust-team
in repository guix.
commit 99a93cb68a3f24951f7ac3adb16ce39fa8a77e6e
Author: Giacomo Leidi <[email protected]>
AuthorDate: Wed Nov 6 21:43:00 2024 +0100
gnu: Add rust-endi-1.
* gnu/packages/crates-io.scm (rust-endi-1): New variable.
Change-Id: I3ff4b3febe141dc6526b91ffdd49846e10a006e0
---
gnu/packages/crates-io.scm | 17 +++++++++++++++++
1 file changed, 17 insertions(+)
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 75dc702dfa..9b5c4bf2d6 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -24163,6 +24163,23 @@ Standard.")
"Streaming transcoding for encoding_rs.")
(license (list license:asl2.0 license:expat))))
+(define-public rust-endi-1
+ (package
+ (name "rust-endi")
+ (version "1.1.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (crate-uri "endi" version))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32 "1gxp388g2zzbncp3rdn60wxkr49xbhhx94nl9p4a6c41w4ma7n53"))))
+ (build-system cargo-build-system)
+ (home-page "https://github.com/zeenix/endi")
+ (synopsis "Simple endian-handling library")
+ (description "This package provides a simple endian-handling library.")
+ (license license:expat)))
+
(define-public rust-endian-type-0.1
(package
(name "rust-endian-type")