[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
04/09: gnu: Add cm256cc.
From: |
guix-commits |
Subject: |
04/09: gnu: Add cm256cc. |
Date: |
Fri, 7 May 2021 12:43:57 -0400 (EDT) |
glv pushed a commit to branch master
in repository guix.
commit 82b72a7d795f308ed35b5d7018bb30a09c92c31a
Author: Guillaume Le Vaillant <glv@posteo.net>
AuthorDate: Mon May 3 17:53:10 2021 +0200
gnu: Add cm256cc.
* gnu/packages/radio.scm (cm256cc): New variable.
---
gnu/packages/radio.scm | 30 ++++++++++++++++++++++++++++++
1 file changed, 30 insertions(+)
diff --git a/gnu/packages/radio.scm b/gnu/packages/radio.scm
index 73f0d03..aebdf58 100644
--- a/gnu/packages/radio.scm
+++ b/gnu/packages/radio.scm
@@ -1638,3 +1638,33 @@ program that can be used to build simple signal
processing flow graphs.")
"SerialDV is a minimal interface to encode and decode audio with AMBE3000
based devices in packet mode over a serial link.")
(license license:gpl3+)))
+
+(define-public cm256cc
+ (package
+ (name "cm256cc")
+ (version "1.1.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/f4exb/cm256cc")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1n9v7g6d370263bgqrjv38s9aq5953rzy7jvd8i30xq6aram9djg"))))
+ (build-system cmake-build-system)
+ (arguments
+ ;; Disable some SIMD features for reproducibility.
+ `(#:configure-flags '("-DENABLE_DISTRIBUTION=1")
+ #:phases
+ (modify-phases %standard-phases
+ (replace 'check
+ (lambda* (#:key tests? #:allow-other-keys)
+ (when tests?
+ (invoke "./cm256_test")))))))
+ (home-page "https://github.com/f4exb/cm256cc")
+ (synopsis "Cauchy MDS Block Erasure Codec")
+ (description
+ "This is a C++ library implementing fast GF(256) Cauchy MDS Block Erasure
+Codec.")
+ (license license:gpl3+)))
- branch master updated (71e9522 -> d87547d), guix-commits, 2021/05/07
- 01/09: gnu: Add csdr., guix-commits, 2021/05/07
- 02/09: gnu: Add serialdv., guix-commits, 2021/05/07
- 03/09: gnu: aptdec: Update to 1.7-1.5f91799., guix-commits, 2021/05/07
- 04/09: gnu: Add cm256cc.,
guix-commits <=
- 05/09: gnu: Add libdab., guix-commits, 2021/05/07
- 06/09: gnu: Add sgp4., guix-commits, 2021/05/07
- 07/09: gnu: Add mbelib., guix-commits, 2021/05/07
- 08/09: gnu: Add dsdcc., guix-commits, 2021/05/07
- 09/09: gnu: Add sdrangel., guix-commits, 2021/05/07