me
/
guix
Archived
1
0
Fork 0

gnu: Add cl-plump-sexp.

* gnu/packages/lisp-xyz.scm (sbcl-plump-sexp, cl-plump-sexp,
  ecl-plump-sexp): New variables.

Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
master
Paul A. Patience 2022-04-21 00:57:12 +00:00 committed by Guillaume Le Vaillant
parent 96dbcd7443
commit 7134a10813
No known key found for this signature in database
GPG Key ID: 6BE8208ADF21FE3F
1 changed files with 33 additions and 0 deletions

View File

@ -7849,6 +7849,39 @@ your own classes.")
(define-public ecl-plump
(sbcl-package->ecl-package sbcl-plump))
(define-public sbcl-plump-sexp
(let ((commit "bbcf75e9ecda8fe7603098ab8c15828407bb4f08")
(revision "0"))
(package
(name "sbcl-plump-sexp")
(version (git-version "0.1.0" revision commit))
(source
(origin
(method git-fetch)
(uri
(git-reference
(url "https://github.com/Shinmera/plump-sexp")
(commit commit)))
(file-name (git-file-name "cl-plump-sexp" version))
(sha256
(base32
"0zm9h0assjb8766z2v6l1k1s60y90y6f8smrl1dczwqlvc8xyln5"))))
(build-system asdf-build-system/sbcl)
(inputs
(list sbcl-plump))
(synopsis "Convert S-expressions into a Plump DOM and back")
(description
"The Plump-SEXP library is a backend for Plump which can convert
between S-expressions and the Plump DOM.")
(home-page "https://github.com/Shinmera/plump-sexp")
(license license:zlib))))
(define-public cl-plump-sexp
(sbcl-package->cl-source-package sbcl-plump-sexp))
(define-public ecl-plump-sexp
(sbcl-package->ecl-package sbcl-plump-sexp))
;;; Split the antik package in two to work around the circular dependency
;;; between antik/antik and antik/gsll.
(define-public sbcl-antik-base