efraim pushed a commit to branch rust-team
in repository guix.
commit dfd545bbdfce3a98055a3b8fb52cec9635124814
Author: Herman Rimm <[email protected]>
AuthorDate: Tue Dec 24 16:32:32 2024 +0100
gnu: rust-crc-catalog-2: Order alphabetically.
* gnu/packages/crates-io.scm (rust-crc-catalog-2): Order.
Change-Id: Iaccc02dbf8af6cd43f4fc607deafcb6605e023d4
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 90b1e68520..8dc6f2e7de 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -18409,6 +18409,25 @@ providing the length of bits, expression, reflection,
an initial value and a
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-crc32fast-1
(package
(name "rust-crc32fast")
@@ -18463,25 +18482,6 @@ final xor value. It has many built-in CRC functions.")
(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)