guix-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[bug#39550] [PATCH] gnu: Add cl-documentation-utils.


From: Konrad Hinsen
Subject: [bug#39550] [PATCH] gnu: Add cl-documentation-utils.
Date: Mon, 10 Feb 2020 17:30:07 +0100

* gnu/packages/lisp-xyz.scm (sbcl-documentation-utils,
  cl-documentation-utils, ecl-documentation-utils): New variables.
---
 gnu/packages/lisp-xyz.scm | 34 ++++++++++++++++++++++++++++++++++
 1 file changed, 34 insertions(+)

diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index 5c97f37d48..be1f43c0bc 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -10270,3 +10270,37 @@ generation functions from the GSL library.")
 
 (define-public ecl-cl-randist
   (sbcl-package->ecl-package sbcl-cl-randist))
+
+(define-public sbcl-documentation-utils
+  (package
+    (name "sbcl-documentation-utils")
+    (version "1.2.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/Shinmera/documentation-utils.git";)
+             (commit "98630dd5f7e36ae057fa09da3523f42ccb5d1f55")))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32
+         "098qhkqskmmrh4wix34mawf7p5c87yql28r51r75yjxj577k5idq"))))
+    (build-system asdf-build-system/sbcl)
+    (synopsis "Simple tools for documenting Common Lisp libraries")
+    (description
+     "This is a small library to help with managing the docstrings
+of a Common Lisp library.")
+    (home-page "https://github.com/Shinmera/documentation-utils";)
+    (license license:zlib)
+    (inputs
+     `(("trivial-indent" ,sbcl-trivial-indent)))
+    (arguments
+     `(#:asd-system-name "documentation-utils"
+       #:asd-file "documentation-utils.asd"
+       #:tests? #f))))
+
+(define-public cl-documentation-utils
+  (sbcl-package->cl-source-package sbcl-documentation-utils))
+
+(define-public ecl-documentation-utils
+  (sbcl-package->ecl-package sbcl-documentation-utils))
-- 
2.25.0






reply via email to

[Prev in Thread] Current Thread [Next in Thread]