rekado pushed a commit to branch master
in repository guix.
commit 8f8863026ee672162248e9e980b3306eaf28ac89
Author: Ricardo Wurmus <[email protected]>
AuthorDate: Wed Nov 10 10:34:15 2021 +0000
gnu: Add rust-matrixcompare-core-0.1.
* gnu/packages/crates-io.scm (rust-matrixcompare-core-0.1): New variable.
---
gnu/packages/crates-io.scm | 18 ++++++++++++++++++
1 file changed, 18 insertions(+)
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index a95f3ad..28bde6f 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -28097,6 +28097,24 @@ grammars. It provides the subset of the regex crate
that only deals with
matching, not parsing substrings.")
(license license:expat)))
+(define-public rust-matrixcompare-core-0.1
+ (package
+ (name "rust-matrixcompare-core")
+ (version "0.1.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (crate-uri "matrixcompare-core" version))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32 "0wqaj028ws2x2h16rf10arwvmpfbmk7afg8b57ahb25i1nrspgdh"))))
+ (build-system cargo-build-system)
+ (arguments `(#:skip-build? #t))
+ (home-page "https://github.com/Andlon/matrixcompare")
+ (synopsis "Core traits for matrixcompare")
+ (description "This package provides core traits for matrixcompare.")
+ (license license:expat)))
+
(define-public rust-matrixmultiply-0.3
(package
(name "rust-matrixmultiply")