guix-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[bug#70606] [PATCH rust-team 080/101] gnu: Place rust-crc-catalog-2 in a


From: Herman Rimm
Subject: [bug#70606] [PATCH rust-team 080/101] gnu: Place rust-crc-catalog-2 in alphabetical order.
Date: Sat, 27 Apr 2024 14:35:42 +0200

* gnu/packages/crates-io.scm (rust-crc-catalog-2, rust-crc-catalog-1):
Move variables.

Change-Id: I5d7349a93f74d234d1aab5205db90748d336d63a
---
 gnu/packages/crates-io.scm | 62 +++++++++++++++++++-------------------
 1 file changed, 31 insertions(+), 31 deletions(-)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index d78044c394..a99527cfb8 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -16705,6 +16705,37 @@ (define-public rust-crc-any-2
 final xor value.  It has many built-in CRC functions.")
     (license license:expat)))
 
+(define-public rust-crc-catalog-2
+  (package
+    (name "rust-crc-catalog")
+    (version "2.4.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "crc-catalog" version))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32 "1xg7sz82w3nxp1jfn425fvn1clvbzb3zgblmxsyqpys0dckp9lqr"))))
+    (build-system cargo-build-system)
+    (home-page "https://github.com/akhilles/crc-catalog.git";)
+    (synopsis "Catalog of CRC algorithms expressed as simple Rust structs")
+    (description
+     "This package contains a catalog of CRC algorithms (generated from
+http://reveng.sourceforge.net/crc-catalogue) expressed as simple Rust 
structs.")
+    (license (list license:expat license:asl2.0))))
+
+(define-public rust-crc-catalog-1
+  (package
+    (inherit rust-crc-catalog-2)
+    (name "rust-crc-catalog")
+    (version "1.1.1")
+    (source (origin
+              (method url-fetch)
+              (uri (crate-uri "crc-catalog" version))
+              (file-name (string-append name "-" version ".tar.gz"))
+              (sha256
+               (base32 
"00qlxgzg15fnyx6nwviibz94rjw803l2avi2k3shjfx0dnsyvbnc"))))))
+
 (define-public rust-crc32fast-1
   (package
     (name "rust-crc32fast")
@@ -16758,37 +16789,6 @@ (define-public rust-crc64-1
        (sha256
         (base32 "0469vp0q9431pqx1236g60if5q3xyxpv4h14smkd45dfzsa6aqjm"))))))
 
-(define-public rust-crc-catalog-2
-  (package
-    (name "rust-crc-catalog")
-    (version "2.4.0")
-    (source
-     (origin
-       (method url-fetch)
-       (uri (crate-uri "crc-catalog" version))
-       (file-name (string-append name "-" version ".tar.gz"))
-       (sha256
-        (base32 "1xg7sz82w3nxp1jfn425fvn1clvbzb3zgblmxsyqpys0dckp9lqr"))))
-    (build-system cargo-build-system)
-    (home-page "https://github.com/akhilles/crc-catalog.git";)
-    (synopsis "Catalog of CRC algorithms expressed as simple Rust structs")
-    (description
-     "This package contains a catalog of CRC algorithms (generated from
-http://reveng.sourceforge.net/crc-catalogue) expressed as simple Rust 
structs.")
-    (license (list license:expat license:asl2.0))))
-
-(define-public rust-crc-catalog-1
-  (package
-    (inherit rust-crc-catalog-2)
-    (name "rust-crc-catalog")
-    (version "1.1.1")
-    (source (origin
-              (method url-fetch)
-              (uri (crate-uri "crc-catalog" version))
-              (file-name (string-append name "-" version ".tar.gz"))
-              (sha256
-               (base32 
"00qlxgzg15fnyx6nwviibz94rjw803l2avi2k3shjfx0dnsyvbnc"))))))
-
 (define-public rust-criterion-0.5
   (package
     (name "rust-criterion")
-- 
2.41.0






reply via email to

[Prev in Thread] Current Thread [Next in Thread]