nongnu: Remove clojure-tools.

It replaces guix clojure-tools poorly (missing CLI tools).

* nongnu/packages/clojure.scm (clojure-tools): Delete variable.

Signed-off-by: Hilton Chain <hako@ultrarare.space>
This commit is contained in:
Remco van 't Veer 2025-05-24 13:41:21 +02:00 committed by Hilton Chain
parent 5ef51fab1d
commit f00514ab7d
No known key found for this signature in database
GPG key ID: ACC66D09CA528292

View file

@ -3,6 +3,7 @@
;;; Copyright © 2020 Jelle Licht <jlicht@fsfe.org>
;;; Copyright © 2020 Alex Griffin <a@ajgrf.com>
;;; Copyright © 2023 Jonathan Brielmaier <jonathan.brielmaier@web.de>
;;; Copyright © 2025 Remco van 't Veer <remco@remworks.net>
(define-module (nongnu packages clojure)
#:use-module (gnu packages compression)
@ -148,33 +149,6 @@ It aims to work alongside you to help you navigate, identify and fix errors,
perform refactors and more.")
(license license:expat)))
(define-public clojure-tools
(package
(name "clojure-tools")
(version "1.12.0.1530")
(source (origin
(method url-fetch)
(uri (string-append
"https://download.clojure.org/install/clojure-tools-"
version ".tar.gz"))
(sha256
(base32
"0jgd0lki1mml7ppccxnbhj9jbpy5cy3s11775p9kkfi6h654pwhg"))))
(build-system copy-build-system)
(arguments
(list #:install-plan
''(("deps.edn" "lib/clojure/")
("clojure-tools-1.12.0.1530.jar" "lib/clojure/libexec/")
("example-deps.edn" "lib/clojure/")
("tools.edn" "lib/clojure/")
("exec.jar" "lib/clojure/libexec/"))))
(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 Clojure REPL, use
Clojure and Java libraries, and start Clojure programs.")
(license license:epl1.0)))
(define-public babashka
(package
(name "babashka")