guix-commits
[Top][All Lists]
Advanced

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

branch master updated: gnu: Add cl-lisp-critic.


From: guix-commits
Subject: branch master updated: gnu: Add cl-lisp-critic.
Date: Thu, 23 Nov 2023 11:12:26 -0500

This is an automated email from the git hooks/post-receive script.

jgart pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 4fd84cec2b gnu: Add cl-lisp-critic.
4fd84cec2b is described below

commit 4fd84cec2bff566ddf9eb60ddaa06f86348d63b2
Author: Michal Atlas <michal_atlas+git@posteo.net>
AuthorDate: Thu Nov 23 09:47:06 2023 +0000

    gnu: Add cl-lisp-critic.
    
    * gnu/packages/lisp-check.scm (cl-lisp-critic, sbcl-lisp-critic,
    ecl-lisp-critic): New variables.
    
    Change-Id: I38ed8af8f4316f47695a22e949b931770e350c1e
    Signed-off-by: jgart <jgart@dismail.de>
---
 gnu/packages/lisp-check.scm | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/gnu/packages/lisp-check.scm b/gnu/packages/lisp-check.scm
index 63a16d608c..7ce74316eb 100644
--- a/gnu/packages/lisp-check.scm
+++ b/gnu/packages/lisp-check.scm
@@ -1149,3 +1149,31 @@ on the XPTest package by Craig Brozensky and the JUnit 
package by Kent Beck.")
 
 (define-public ecl-xlunit
   (sbcl-package->ecl-package sbcl-xlunit))
+
+(define-public sbcl-lisp-critic
+  (package
+    (name "sbcl-lisp-critic")
+    (version "0.0.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/g000001/lisp-critic";)
+             (commit "fb70c69dc61a53fb069b24edebcfb0de813a176b")))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "059vfdn8ds44hihhjmylp059zl2gzghiipcigvjd51sb6zc6f0zy"))))
+    (build-system asdf-build-system/sbcl)
+    (synopsis "Common Lisp linter")
+    (description "The Lisp Critic scans your code for instances of bad
+Lisp programming practice.")
+    (home-page
+     "https://courses.cs.northwestern.edu/325/exercises/critic.html#critic";)
+    (license license:expat)))
+
+(define-public cl-lisp-critic
+  (sbcl-package->cl-source-package sbcl-lisp-critic))
+
+(define-public ecl-lisp-critic
+  (sbcl-package->ecl-package sbcl-lisp-critic))
+



reply via email to

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