efraim pushed a commit to branch rust-team
in repository guix.

commit 1a959bebdefa7609058505ae51bf61eb4237a621
Author: Herman Rimm <[email protected]>
AuthorDate: Tue Dec 24 21:11:09 2024 +0100

    gnu: rust-pretty-hex-0.4: Order alphabetically.
    
    * gnu/packages/crates-io.scm (rust-pretty-hex-0.4): Order.
    
    Change-Id: I78a9d145cdc0039ed9d3c84f27b24a2eec537ca7
    Signed-off-by: Efraim Flashner <[email protected]>
---
 gnu/packages/crates-io.scm | 38 +++++++++++++++++++-------------------
 1 file changed, 19 insertions(+), 19 deletions(-)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 5b22b85aad..051577ea21 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -61141,6 +61141,25 @@ replacements, adding colorful diffs.")
         ("rust-chrono" ,rust-chrono-0.4)
         ("rust-env-logger" ,rust-env-logger-0.6))))))
 
+(define-public rust-pretty-hex-0.4
+  (package
+    (name "rust-pretty-hex")
+    (version "0.4.1")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "pretty-hex" version))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32 "0m0j8pqmh6gq1mq7yzp12z0ix159fw0di5lhiwv2y1j0m3j3xj5v"))))
+    (build-system cargo-build-system)
+    (arguments
+     (list #:cargo-development-inputs `(("rust-heapless" ,rust-heapless-0.8))))
+    (home-page "https://github.com/wolandr/pretty-hex";)
+    (synopsis "Prettified output of hexadecimal byte slices")
+    (description "Pretty hex dump of byte slices in the common style.")
+    (license license:expat)))
+
 (define-public rust-prettyplease-0.2
   (package
     (name "rust-prettyplease")
@@ -61184,25 +61203,6 @@ replacements, adding colorful diffs.")
        #:cargo-development-inputs
        (("rust-syn" ,rust-syn-1))))))
 
-(define-public rust-pretty-hex-0.4
-  (package
-    (name "rust-pretty-hex")
-    (version "0.4.1")
-    (source
-     (origin
-       (method url-fetch)
-       (uri (crate-uri "pretty-hex" version))
-       (file-name (string-append name "-" version ".tar.gz"))
-       (sha256
-        (base32 "0m0j8pqmh6gq1mq7yzp12z0ix159fw0di5lhiwv2y1j0m3j3xj5v"))))
-    (build-system cargo-build-system)
-    (arguments
-     (list #:cargo-development-inputs `(("rust-heapless" ,rust-heapless-0.8))))
-    (home-page "https://github.com/wolandr/pretty-hex";)
-    (synopsis "Prettified output of hexadecimal byte slices")
-    (description "Pretty hex dump of byte slices in the common style.")
-    (license license:expat)))
-
 (define-public rust-pretty-hex-0.3
   (package
     (inherit rust-pretty-hex-0.4)

Reply via email to