gnu: Add cl-inquisitor.

* gnu/packages/lisp-xyz.scm (cl-inquisitor, ecl-inquisitor, sbcl-inquisitor):
New variables.
Co-authored-by: Ada Stevenson <adanskana@gmail.com>

Change-Id: I82feeb9281e0c77a9d058aabe997777204556593
This commit is contained in:
jgart 2024-09-26 11:58:28 -05:00
parent a671bdaabc
commit 22e0032666
No known key found for this signature in database
GPG key ID: A52AA2B477B6DD35

View file

@ -18040,6 +18040,38 @@ (define-public cl-inheriting-readers
(define-public ecl-inheriting-readers
(sbcl-package->ecl-package sbcl-inheriting-readers))
(define-public sbcl-inquisitor
(let ((commit "423fa9bdd4a68a6ae517b18406d81491409ccae8")
(revision "0"))
(package
(name "sbcl-inquisitor")
(version (git-version "0.5" revision commit))
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/t-sin/inquisitor/")
(commit commit)))
(file-name (git-file-name name version))
(sha256
(base32 "08rkmqnwlq6v84wcz9yp31j5lxrsy33kv3dh7n3ccsg4kc54slzw"))))
(build-system asdf-build-system/sbcl)
(native-inputs (list sbcl-prove sbcl-babel))
(inputs (list sbcl-flexi-streams sbcl-alexandria sbcl-anaphora))
(home-page "https://github.com/t-sin/inquisitor")
(synopsis
"Encoding/end-of-line detection and external-format abstraction for Common Lisp")
(description
"Inquisitor is a cross-implementation library provding
encoding/end-of-line detection and external-format abstraction for Common Lisp.")
(license license:expat))))
(define-public cl-inquisitor
(sbcl-package->cl-source-package sbcl-inquisitor))
(define-public ecl-inquisitor
(sbcl-package->ecl-package sbcl-inquisitor))
(define-public sbcl-interface
(let ((commit "6d8bd74214053debcbc0b174d65ea73c271c1563")
(revision "0"))