mirror of
https://gitlab.com/nonguix/nonguix.git
synced 2024-11-22 16:38:09 +01:00
a328f6c91f
The binary-unpack phase suffered from a problem for unknown binary file extensions, see: !336 (comment 1709385147) . This patch fixes the incorrect behavior by effectively restoring the state of the directory tree before the phase. * nonguix/build/binary-build-system.scm (binary-unpack): Restore the environment as it was before this phase. * nongnu/packages/clojure.scm (clj-kondo)[arguments]: No longer delete 'binary-unpack phase. * nongnu/packages/game-development.scm (libsteam)[arguments]: dito. Signed-off-by: Jonathan Brielmaier <jonathan.brielmaier@web.de>
117 lines
4.7 KiB
Scheme
117 lines
4.7 KiB
Scheme
;;; SPDX-License-Identifier: GPL-3.0-or-later
|
|
;;; Copyright © 2019 Pierre Neidhardt <mail@ambrevar.xyz>
|
|
;;; Copyright © 2020 Jelle Licht <jlicht@fsfe.org>
|
|
;;; Copyright © 2020 Alex Griffin <a@ajgrf.com>
|
|
;;; Copyright © 2023 Jonathan Brielmaier <jonathan.brielmaier@web.de>
|
|
|
|
(define-module (nongnu packages clojure)
|
|
#:use-module (gnu packages compression)
|
|
#:use-module (gnu packages gcc)
|
|
#:use-module (gnu packages readline)
|
|
#:use-module (guix build-system copy)
|
|
#:use-module (guix build-system gnu)
|
|
#:use-module (guix build-system trivial)
|
|
#:use-module (guix download)
|
|
#:use-module (guix gexp)
|
|
#:use-module (guix git-download)
|
|
#:use-module (guix packages)
|
|
#:use-module (nonguix build-system binary)
|
|
#:use-module ((guix licenses) #:prefix license:))
|
|
|
|
;; This is a hidden package, as it does not really serve a purpose on its own.
|
|
(define leiningen-jar
|
|
(package
|
|
(name "leiningen-jar")
|
|
(version "2.10.0")
|
|
(source (origin
|
|
(method url-fetch)
|
|
(uri "https://codeberg.org/attachments/43cebda5-a7c2-405b-b641-5143a00051b5")
|
|
(file-name "leiningen-standalone.jar")
|
|
(sha256
|
|
(base32
|
|
"0d5vmpyp9ddxpj1s5c60fv2f5iimz1chbgfhchlaqxa0sfx9jwnj"))))
|
|
(build-system trivial-build-system)
|
|
(arguments
|
|
`(#:modules ((guix build utils))
|
|
#:builder (begin
|
|
(use-modules (guix build utils))
|
|
(let ((source (assoc-ref %build-inputs "source"))
|
|
(jar-dir (string-append %output "/share/")))
|
|
(mkdir-p jar-dir)
|
|
(copy-file source
|
|
(string-append jar-dir "leiningen-standalone.jar"))))))
|
|
(home-page "https://leiningen.org")
|
|
(synopsis "Automate Clojure projects without setting your hair on fire")
|
|
(description "Leiningen is a Clojure tool with a focus on project
|
|
automation and declarative configuration. It gets out of your way and
|
|
lets you focus on your code.")
|
|
(license license:epl1.0)))
|
|
|
|
(define-public leiningen
|
|
(package
|
|
(inherit leiningen-jar)
|
|
(name "leiningen")
|
|
(version "2.10.0")
|
|
(source (origin
|
|
(method git-fetch)
|
|
(uri (git-reference
|
|
(url "https://codeberg.org/leiningen/leiningen.git")
|
|
(commit version)))
|
|
(file-name (git-file-name name version))
|
|
(sha256
|
|
(base32
|
|
"0xvniav6iy1yrbamvbg8i3dq8issiczv3rbig2yc3nm08d2q0rig"))))
|
|
(build-system gnu-build-system)
|
|
(arguments
|
|
`(#:tests? #f
|
|
#:phases (modify-phases %standard-phases
|
|
(delete 'configure)
|
|
(delete 'build)
|
|
(replace 'install
|
|
(lambda _
|
|
(let* ((lein-pkg (string-append (assoc-ref %build-inputs "source") "/bin/lein-pkg"))
|
|
(lein-jar (string-append (assoc-ref %build-inputs "leiningen-jar")
|
|
"/share/leiningen-standalone.jar"))
|
|
(bin-dir (string-append %output "/bin"))
|
|
(lein (string-append bin-dir "/lein")))
|
|
(mkdir-p bin-dir)
|
|
(copy-file lein-pkg lein)
|
|
(patch-shebang lein)
|
|
(chmod lein #o555)
|
|
(substitute* lein
|
|
(("LEIN_JAR=.*") (string-append "LEIN_JAR=" lein-jar)))
|
|
#t))))))
|
|
(inputs
|
|
`(("leiningen-jar" ,leiningen-jar)))))
|
|
|
|
(define-public clj-kondo
|
|
(package
|
|
(name "clj-kondo")
|
|
(version "2023.10.20")
|
|
(source (origin
|
|
(method url-fetch/zipbomb)
|
|
(uri (string-append
|
|
"https://github.com/clj-kondo/clj-kondo/releases/download/v"
|
|
version "/clj-kondo-" version "-linux-amd64.zip"))
|
|
(sha256
|
|
(base32
|
|
"1zb4bkmhv5mh18z8h82qa1a0m95pd5dwdxg31pqgs6lnlca3vsph"))))
|
|
(build-system binary-build-system)
|
|
(arguments
|
|
(list #:patchelf-plan `'(("clj-kondo" ("gcc" "zlib")))
|
|
#:install-plan `'(("clj-kondo" "/bin/"))
|
|
#:phases #~(modify-phases %standard-phases
|
|
(add-after 'unpack 'chmod
|
|
(lambda _
|
|
(chmod "clj-kondo" #o755))))))
|
|
(native-inputs
|
|
(list unzip))
|
|
(inputs
|
|
(list `(,gcc "lib")
|
|
zlib))
|
|
(supported-systems '("x86_64-linux"))
|
|
(home-page "https://github.com/clj-kondo/clj-kondo")
|
|
(synopsis "Linter for Clojure code")
|
|
(description "Clj-kondo performs static analysis on Clojure, ClojureScript
|
|
and EDN, without the need of a running REPL.")
|
|
(license license:epl1.0)))
|