diff options
author | Pierre Neidhardt <mail@ambrevar.xyz> | 2020-01-03 16:43:04 +0100 |
---|---|---|
committer | Pierre Neidhardt <mail@ambrevar.xyz> | 2020-01-03 16:46:40 +0100 |
commit | 8dc5ff8fd0f3d007cb097c4055f73a053dc373c7 (patch) | |
tree | 0144beabf0cea3061a31daf5a96fea76b5e07c43 /gnu | |
parent | 3029b5856699062ae8ef8c0e79b40f8bb66d1708 (diff) | |
download | guix-8dc5ff8fd0f3d007cb097c4055f73a053dc373c7.tar guix-8dc5ff8fd0f3d007cb097c4055f73a053dc373c7.tar.gz |
gnu: Add documentation-utils.
* gnu/packages/lisp-xyz.scm (cl-documentation-utils, sbcl-documentation-utils): New variables.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/lisp-xyz.scm | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm index 9264e46a91..65f2418ce7 100644 --- a/gnu/packages/lisp-xyz.scm +++ b/gnu/packages/lisp-xyz.scm @@ -7280,3 +7280,33 @@ results.") (define-public cl-trivial-indent (sbcl-package->cl-source-package sbcl-trivial-indent)) + +(define-public sbcl-documentation-utils + (let ((commit "98630dd5f7e36ae057fa09da3523f42ccb5d1f55") + (revision "0")) + (package + (name "sbcl-documentation-utils") + (version (git-version "1.2.0" revision commit)) + (source + (origin + (method git-fetch) + (uri + (git-reference + (url "https://github.com/Shinmera/documentation-utils.git") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "098qhkqskmmrh4wix34mawf7p5c87yql28r51r75yjxj577k5idq")))) + (build-system asdf-build-system/sbcl) + (inputs + `(("trivial-indent" ,sbcl-trivial-indent))) + (synopsis "Few simple tools to document Common Lisp libraries") + (description + "This is a small library to help you with managing the Common Lisp +docstrings for your library.") + (home-page "https://shinmera.github.io/documentation-utils/") + (license license:zlib)))) + +(define-public cl-documentation-utils + (sbcl-package->cl-source-package sbcl-documentation-utils)) |