guix_mirror_bot pushed a commit to branch next-master
in repository guix.

commit 483582fee1b822cb21784297af728d479f7948a0
Author: Mathieu Lirzin <[email protected]>
AuthorDate: Sat Dec 27 04:43:14 2025 +0100

    gnu: clojure-tools: Add missing SLF4J logger implementation.
    
    Previously the following warning was appearing when running some ‘clj’
    commands:
    
      SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".
      SLF4J: Defaulting to no-operation (NOP) logger implementation
      SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further 
details.
    
    * gnu/packages/clojure.scm (clojure-tools)[inputs]: Add java-slf4j-nop.
    
    Change-Id: I80d3575a5b533dfd6a3d42d8846170c7ae1b2268
    Signed-off-by: Ludovic Courtès <[email protected]>
---
 gnu/packages/clojure.scm | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/clojure.scm b/gnu/packages/clojure.scm
index bbe16486a4..0431baf830 100644
--- a/gnu/packages/clojure.scm
+++ b/gnu/packages/clojure.scm
@@ -259,7 +259,8 @@ designs.")
     (inputs (list rlwrap
                   clojure
                   clojure-tools-deps
-                  java-commons-logging-minimal))
+                  java-commons-logging-minimal
+                  java-slf4j-nop))
     (home-page "https://clojure.org/releases/tools";)
     (synopsis "CLI tools for the Clojure programming language")
     (description "The Clojure command line tools can be used to start a

Reply via email to