mirror of
https://gitlab.com/nonguix/nonguix.git
synced 2024-12-24 07:44:52 +01:00
nongnu: Remove clojure-tools.
This package was upstreamed in 8cf2817d4c2e0. * nonguix/packages/clojure.scm (clojure-tools): Remove variable.
This commit is contained in:
parent
36b6bba340
commit
f93ee0b8b1
1 changed files with 0 additions and 40 deletions
|
@ -31,46 +31,6 @@
|
|||
#:use-module (nonguix build-system binary)
|
||||
#:use-module ((guix licenses) #:prefix license:))
|
||||
|
||||
(define-public clojure-tools
|
||||
(package
|
||||
(name "clojure-tools")
|
||||
(version "1.10.3.1040")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://download.clojure.org/install/clojure-tools-"
|
||||
version
|
||||
".tar.gz"))
|
||||
(sha256 (base32 "0xvr9nmk9q789vp32zmmzj4macv8v7y9ivnfd6lf7i8vxgg6hvgv"))))
|
||||
(build-system copy-build-system)
|
||||
(arguments
|
||||
`(#:install-plan
|
||||
'(("deps.edn" "lib/clojure/")
|
||||
("example-deps.edn" "lib/clojure/")
|
||||
("tools.edn" "lib/clojure/")
|
||||
("exec.jar" "lib/clojure/libexec/")
|
||||
(,(string-append "clojure-tools-" version ".jar") "lib/clojure/libexec/")
|
||||
("clojure" "bin/")
|
||||
("clj" "bin/"))
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-after 'unpack 'fix-paths
|
||||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
(substitute* "clojure"
|
||||
(("PREFIX") (string-append (assoc-ref outputs "out") "/lib/clojure")))
|
||||
(substitute* "clj"
|
||||
(("BINDIR") (string-append (assoc-ref outputs "out") "/bin"))
|
||||
(("rlwrap") (which "rlwrap")))
|
||||
#true)))))
|
||||
(inputs `(("rlwrap" ,rlwrap)))
|
||||
(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)
|
||||
(home-page "https://clojure.org/releases/tools")))
|
||||
|
||||
|
||||
;; This is a hidden package, as it does not really serve a purpose on its own.
|
||||
(define leiningen-jar
|
||||
(package
|
||||
|
|
Loading…
Reference in a new issue