mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 06:18:07 -05:00
gnu: Add cl-zstd.
* gnu/packages/lisp-xyz.scm (cl-zstd, ecl-cl-zstd, sbcl-cl-zstd): New variables.
This commit is contained in:
parent
8c66ac72fb
commit
08c4dd518a
1 changed files with 45 additions and 0 deletions
|
@ -12663,3 +12663,48 @@ (define-public cl-simple-neural-network
|
|||
|
||||
(define-public ecl-simple-neural-network
|
||||
(sbcl-package->ecl-package sbcl-simple-neural-network))
|
||||
|
||||
(define-public sbcl-zstd
|
||||
(let ((commit "d144582c581aaa52bac24d6686af27fa3e781e06")
|
||||
(revision "1"))
|
||||
(package
|
||||
(name "sbcl-zstd")
|
||||
(version (git-version "1.0" revision commit))
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/glv2/cl-zstd")
|
||||
(commit commit)))
|
||||
(file-name (git-file-name "cl-zstd" version))
|
||||
(sha256
|
||||
(base32 "1774jy8hzbi6nih3sq6vchk66f7g8w86dwgpbvljyfzcnkcaz6ql"))))
|
||||
(build-system asdf-build-system/sbcl)
|
||||
(native-inputs
|
||||
`(("fiveam" ,sbcl-fiveam)))
|
||||
(inputs
|
||||
`(("cffi" ,sbcl-cffi)
|
||||
("cl-octet-streams" ,sbcl-cl-octet-streams)
|
||||
("zstd-lib" ,zstd "lib")))
|
||||
(arguments
|
||||
'(#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-after 'unpack 'fix-paths
|
||||
(lambda* (#:key inputs #:allow-other-keys)
|
||||
(substitute* "src/libzstd.lisp"
|
||||
(("libzstd\\.so")
|
||||
(string-append (assoc-ref inputs "zstd-lib")
|
||||
"/lib/libzstd.so")))
|
||||
#t)))))
|
||||
(synopsis "Common Lisp library for Zstandard (de)compression")
|
||||
(description
|
||||
"This Common Lisp library provides functions for Zstandard
|
||||
compression/decompression using bindings to the libzstd C library.")
|
||||
(home-page "https://github.com/glv2/cl-zstd")
|
||||
(license license:gpl3+))))
|
||||
|
||||
(define-public cl-zstd
|
||||
(sbcl-package->cl-source-package sbcl-zstd))
|
||||
|
||||
(define-public ecl-zstd
|
||||
(sbcl-package->ecl-package sbcl-zstd))
|
||||
|
|
Loading…
Reference in a new issue