me
/
guix
Archived
1
0
Fork 0

gnu: Add form-fiddle.

* gnu/packages/lisp-xyz.scm (cl-form-fiddle, sbcl-form-fiddle): New variables.
master
Pierre Neidhardt 2020-01-03 16:43:28 +01:00
parent 8dc5ff8fd0
commit aa47c9e7d3
No known key found for this signature in database
GPG Key ID: 9BDCF497A4BBCC7F
1 changed files with 30 additions and 0 deletions

View File

@ -7310,3 +7310,33 @@ docstrings for your library.")
(define-public cl-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))