diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2021-12-15 14:37:32 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2021-12-15 14:43:02 +0100 |
commit | a7fca9d65a3feb0138efda72bd16db25d5cab264 (patch) | |
tree | 8f4363e39b131fd3cc416cb355861889ade49ea9 | |
parent | 99b2f51dc251431f11c73b6dc630df0bc61ac723 (diff) | |
download | guix-a7fca9d65a3feb0138efda72bd16db25d5cab264.tar.gz guix-a7fca9d65a3feb0138efda72bd16db25d5cab264.zip |
gnu: Add isa-l.
* gnu/packages/compression.scm (isa-l): New variable.
-rw-r--r-- | gnu/packages/compression.scm | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/gnu/packages/compression.scm b/gnu/packages/compression.scm index 1a3c639884..0e752ed698 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") |