efraim pushed a commit to branch rust-team
in repository guix.
commit 46645932857eaa85dfc5cb14d388a57cc32f4746
Author: Efraim Flashner <[email protected]>
AuthorDate: Sun Sep 22 21:20:06 2024 +0300
gnu: Add rust-hex-slice-0.1.
* gnu/packages/crates-io.scm (rust-hex-slice-0.1): New variable.
Change-Id: Ic6df8c3f54ba34f78821eaf23ae752cba06c7374
---
gnu/packages/crates-io.scm | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index a9d385775a..9608473b8c 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -32629,6 +32629,26 @@ compile time.")
`(#:cargo-inputs
(("rust-proc-macro-hack" ,rust-proc-macro-hack-0.4))))))
+(define-public rust-hex-slice-0.1
+ (package
+ (name "rust-hex-slice")
+ (version "0.1.4")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (crate-uri "hex-slice" version))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32 "0k3ck81m9lz5wz3c7qqj3j3m5xa5pr599n41gbq58i91w04a74al"))))
+ (build-system cargo-build-system)
+ (arguments
+ `(#:cargo-development-inputs (("rust-suppositions"
,rust-suppositions-0.1))))
+ (home-page "https://github.com/cstorey/hex-slice/")
+ (synopsis "Extends the std::fmt::*Hex traits to slices")
+ (description
+ "This package provides extends the std::fmt::*Hex traits to slices.")
+ (license license:expat)))
+
(define-public rust-hexf-parse-0.2
(package
(name "rust-hexf-parse")