mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Add form-fiddle.
* gnu/packages/lisp-xyz.scm (cl-form-fiddle, sbcl-form-fiddle): New variables.
This commit is contained in:
parent
8dc5ff8fd0
commit
aa47c9e7d3
1 changed files with 30 additions and 0 deletions
|
@ -7310,3 +7310,33 @@ docstrings for your library.")
|
||||||
|
|
||||||
(define-public cl-documentation-utils
|
(define-public cl-documentation-utils
|
||||||
(sbcl-package->cl-source-package sbcl-documentation-utils))
|
(sbcl-package->cl-source-package sbcl-documentation-utils))
|
||||||
|
|
||||||
|
(define-public sbcl-form-fiddle
|
||||||
|
(let ((commit "e0c23599dbb8cff3e83e012f3d86d0764188ad18")
|
||||||
|
(revision "0"))
|
||||||
|
(package
|
||||||
|
(name "sbcl-form-fiddle")
|
||||||
|
(version (git-version "1.1.0" revision commit))
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri
|
||||||
|
(git-reference
|
||||||
|
(url "https://github.com/Shinmera/form-fiddle")
|
||||||
|
(commit commit)))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"041iznc9mpfyrl0sv5893ys9pbb2pvbn9g3clarqi7gsfj483jln"))))
|
||||||
|
(build-system asdf-build-system/sbcl)
|
||||||
|
(inputs
|
||||||
|
`(("documentation-utils" ,sbcl-documentation-utils)))
|
||||||
|
(synopsis "Utilities to destructure Common Lisp lambda forms")
|
||||||
|
(description
|
||||||
|
"Often times we need to destructure a form definition in a Common Lisp
|
||||||
|
macro. This library provides a set of simple utilities to help with that.")
|
||||||
|
(home-page "https://shinmera.github.io/form-fiddle/")
|
||||||
|
(license license:zlib))))
|
||||||
|
|
||||||
|
(define-public cl-form-fiddle
|
||||||
|
(sbcl-package->cl-source-package sbcl-form-fiddle))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue