guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/02: gnu: Add isa-l.


From: guix-commits
Subject: 01/02: gnu: Add isa-l.
Date: Wed, 15 Dec 2021 08:43:35 -0500 (EST)

rekado pushed a commit to branch master
in repository guix.

commit a7fca9d65a3feb0138efda72bd16db25d5cab264
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Wed Dec 15 14:37:32 2021 +0100

    gnu: Add isa-l.
    
    * gnu/packages/compression.scm (isa-l): New variable.
---
 gnu/packages/compression.scm | 35 +++++++++++++++++++++++++++++++++++
 1 file changed, 35 insertions(+)

diff --git a/gnu/packages/compression.scm b/gnu/packages/compression.scm
index 1a3c639..0e752ed 100644
--- a/gnu/packages/compression.scm
+++ b/gnu/packages/compression.scm
@@ -2075,6 +2075,41 @@ single-member files which can't be decompressed in 
parallel.")
 non-Windows systems without running the actual installer using wine.")
    (license license:zlib)))
 
+(define-public isa-l
+  (package
+   (name "isa-l")
+   (version "2.30.0")
+   (source
+    (origin
+     (method git-fetch)
+     (uri (git-reference
+           (url "https://github.com/intel/isa-l";)
+           ;; Corresponds to tag v2.30.0
+           (commit "2df39cf5f1b9ccaa2973f6ef273857e4dc46f0cf")))
+     (file-name (git-file-name name version))
+     (sha256
+      (base32 "06ymkrf3hkkd94i59ahm79545rk709y8rd0v2l86w38z6is942q0"))))
+   (build-system gnu-build-system)
+   (native-inputs (list autoconf automake libtool nasm))
+   (home-page "https://github.com/intel/isa-l";)
+   (synopsis "Intelligent storage acceleration library")
+   (description "ISA-L is a collection of optimized low-level functions
+targeting storage applications.  ISA-L includes:
+
+@itemize
+@item Erasure codes: fast block Reed-Solomon type erasure codes for any
+  encode/decode matrix;
+@item CRC: fast implementations of cyclic redundancy check.  Six different
+  polynomials supported: iscsi32, ieee32, t10dif, ecma64, iso64, jones64;
+@item Raid: calculate and operate on XOR and P+Q parity found in common RAID
+  implementations;
+@item Compression: fast deflate-compatible data compression;
+@item De-compression: fast inflate-compatible data compression;
+@item igzip: command line application like gzip, accelerated with ISA-L.
+@end itemize
+")
+   (license license:bsd-3)))
+
 (define-public brotli
   (package
     (name "brotli")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]