gnu: Add rust-endi-1.

* gnu/packages/crates-io.scm (rust-endi-1): New variable.

Change-Id: I3ff4b3febe141dc6526b91ffdd49846e10a006e0
This commit is contained in:
Giacomo Leidi 2024-11-06 21:43:00 +01:00 committed by Efraim Flashner
parent d787b77ad8
commit caadb8e934
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -24182,6 +24182,23 @@ (define-public rust-encoding-rs-io-0.1
"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")