gnu: Add trivial-indent.

* gnu/packages/lisp-xyz.scm (cl-trivial-indent, sbcl-trivial-indent): New variables.
This commit is contained in:
Pierre Neidhardt 2020-01-03 16:42:42 +01:00
parent 41bc208e0c
commit 3029b58566
No known key found for this signature in database
GPG key ID: 9BDCF497A4BBCC7F

View file

@ -7251,3 +7251,32 @@ (define-public sbcl-graph-json
((#:asd-file _ "") "graph.json.asd")
((#:asd-system-name _ #f) "graph-json")))
(synopsis "Serialize graphs to and from JSON format")))
(define-public sbcl-trivial-indent
(let ((commit "2d016941751647c6cc5bd471751c2cf68861c94a")
(revision "0"))
(package
(name "sbcl-trivial-indent")
(version (git-version "1.0.0" revision commit))
(source
(origin
(method git-fetch)
(uri
(git-reference
(url "https://github.com/Shinmera/trivial-indent")
(commit commit)))
(file-name (git-file-name name version))
(sha256
(base32
"1sj90nqz17w4jq0ixz00gb9g5g6d2s7l8r17zdby27gxxh51w266"))))
(build-system asdf-build-system/sbcl)
(synopsis "Simple Common Lisp library to allow indentation hints for SWANK")
(description
"This library allows you to define custom indentation hints for your
macros if the one recognised by SLIME automatically produces unwanted
results.")
(home-page "https://shinmera.github.io/trivial-indent/")
(license license:zlib))))
(define-public cl-trivial-indent
(sbcl-package->cl-source-package sbcl-trivial-indent))