me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-crc-catalog-2.

* gnu/packages/crates-io.scm (rust-crc-catalog-2): New variable.
(rust-crc-catalog-1): Inherit from rust-crc-catalog-2.

Change-Id: Ic08cb90d7ab36a70fdd7658366420c5c6f2224e1
master
Efraim Flashner 2023-12-21 09:39:41 +02:00
parent 844740693d
commit ccb4d3b6b3
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 21 additions and 8 deletions

View File

@ -17377,16 +17377,17 @@ final xor value. It has many built-in CRC functions.")
Rust.")
(license license:bsd-3)))
(define-public rust-crc-catalog-1
(define-public rust-crc-catalog-2
(package
(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"))))
(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")
@ -17395,6 +17396,18 @@ Rust.")
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")