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

commit 8c5b5a9e4788eb0540643081fc6c1afe7d319d3c
Author: Herman Rimm <[email protected]>
AuthorDate: Tue Dec 24 16:32:56 2024 +0100

    gnu: rust-fs-utils-1: Order alphabetically.
    
    * gnu/packages/crates-io.scm (rust-fs-utils-1): Order.
    
    Change-Id: I18f67a557d61ed41a72f9f54dcbb9c1d69071124
    Signed-off-by: Efraim Flashner <[email protected]>
---
 gnu/packages/crates-io.scm | 46 +++++++++++++++++++++++-----------------------
 1 file changed, 23 insertions(+), 23 deletions(-)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index a0ffcba91a..f65f44d85c 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -30351,6 +30351,29 @@ more helpful error messages.")
 process and much more.")
     (license license:expat)))
 
+(define-public rust-fs-utils-1
+  (package
+    (name "rust-fs-utils")
+    (version "1.1.4")
+    (source (origin
+              (method url-fetch)
+              (uri (crate-uri "fs-utils" version))
+              (file-name (string-append name "-" version ".tar.gz"))
+              (sha256
+               (base32
+                "14r5wl14mz227v0lpy89lvjzfnxgdxigvrrmm6c4r52w03fakivg"))))
+    (build-system cargo-build-system)
+    (arguments
+     `(#:cargo-inputs
+       (("rust-quick-error" ,rust-quick-error-1))
+       #:cargo-development-inputs
+       (("rust-tempfile" ,rust-tempfile-3))))
+    (home-page "https://github.com/Byron/fs-utils-rs";)
+    (synopsis "Utilities to help working with the filesystem")
+    (description "This package provides a bunch of utilities to help working
+with the filesystem.")
+    (license (list license:expat license:asl2.0))))
+
 (define-public rust-fs2-0.4
   (package
     (name "rust-fs2")
@@ -30376,29 +30399,6 @@ process and much more.")
 duplication.")
     (license (list license:expat license:asl2.0))))
 
-(define-public rust-fs-utils-1
-  (package
-    (name "rust-fs-utils")
-    (version "1.1.4")
-    (source (origin
-              (method url-fetch)
-              (uri (crate-uri "fs-utils" version))
-              (file-name (string-append name "-" version ".tar.gz"))
-              (sha256
-               (base32
-                "14r5wl14mz227v0lpy89lvjzfnxgdxigvrrmm6c4r52w03fakivg"))))
-    (build-system cargo-build-system)
-    (arguments
-     `(#:cargo-inputs
-       (("rust-quick-error" ,rust-quick-error-1))
-       #:cargo-development-inputs
-       (("rust-tempfile" ,rust-tempfile-3))))
-    (home-page "https://github.com/Byron/fs-utils-rs";)
-    (synopsis "Utilities to help working with the filesystem")
-    (description "This package provides a bunch of utilities to help working
-with the filesystem.")
-    (license (list license:expat license:asl2.0))))
-
 (define-public rust-fs2-0.2
   (package
     (name "rust-fs2")

Reply via email to