diff options
author | Katherine Cox-Buday <cox.katherine.e@gmail.com> | 2019-03-29 14:44:43 -0500 |
---|---|---|
committer | 宋文武 <iyzsong@member.fsf.org> | 2019-04-07 11:23:14 +0800 |
commit | 50fe395d1e13bc7c5f6d65cde8609a3cf80a1235 (patch) | |
tree | 6ab8b9f67360607a0535eaf63472ae7d86b428a2 | |
parent | a4aefc1b2f35b412d5b68655373238c4de374053 (diff) | |
download | patches-50fe395d1e13bc7c5f6d65cde8609a3cf80a1235.tar patches-50fe395d1e13bc7c5f6d65cde8609a3cf80a1235.tar.gz |
gnu: Add chipz.
* gnu/packages/lisp.scm (sbcl-chipz, cl-chipz): New variables.
Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
-rw-r--r-- | gnu/packages/lisp.scm | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/gnu/packages/lisp.scm b/gnu/packages/lisp.scm index 6032a463b6..800b8f576b 100644 --- a/gnu/packages/lisp.scm +++ b/gnu/packages/lisp.scm @@ -4087,3 +4087,38 @@ as good or bad as the next one.") (define-public cl-cl-who (sbcl-package->cl-source-package sbcl-cl-who)) + +(define-public sbcl-chipz + (let ((version "0.8") + (commit "75dfbc660a5a28161c57f115adf74c8a926bfc4d") + (revision "1")) + (package + (name "sbcl-chipz") + (version (git-version version revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/froydnj/chipz.git") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0plx4rs39zbs4gjk77h4a2q11zpy75fh9v8hnxrvsf8fnakajhwg")))) + (build-system asdf-build-system/sbcl) + (native-inputs + `(("sbcl-flexi-streams" ,sbcl-flexi-streams))) + (home-page "http://method-combination.net/lisp/chipz/") + (synopsis + "Common Lisp library for decompressing deflate, zlib, gzip, and bzip2 +data") + (description + "DEFLATE data, defined in RFC1951, forms the core of popular +compression formats such as zlib (RFC 1950) and gzip (RFC 1952). As such, +Chipz also provides for decompressing data in those formats as well. BZIP2 is +the format used by the popular compression tool bzip2.") + ;; The author describes it as "MIT-like" + (license license:expat)))) + +(define-public cl-chipz + (sbcl-package->cl-source-package sbcl-chipz)) |