mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-01 07:16:39 +01:00
gnu: Add cm256cc.
* gnu/packages/radio.scm (cm256cc): New variable.
This commit is contained in:
parent
1bd9f785b6
commit
82b72a7d79
1 changed files with 30 additions and 0 deletions
|
@ -1638,3 +1638,33 @@ (define-public serialdv
|
||||||
"SerialDV is a minimal interface to encode and decode audio with AMBE3000
|
"SerialDV is a minimal interface to encode and decode audio with AMBE3000
|
||||||
based devices in packet mode over a serial link.")
|
based devices in packet mode over a serial link.")
|
||||||
(license license:gpl3+)))
|
(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+)))
|
||||||
|
|
Loading…
Reference in a new issue