From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:36767) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1j3eKl-0006oF-R1 for guix-patches@gnu.org; Mon, 17 Feb 2020 06:13:04 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1j3eKk-0004zT-MG for guix-patches@gnu.org; Mon, 17 Feb 2020 06:13:03 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:60314) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1j3eKk-0004zN-Im for guix-patches@gnu.org; Mon, 17 Feb 2020 06:13:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1j3eKk-00057P-FF for guix-patches@gnu.org; Mon, 17 Feb 2020 06:13:02 -0500 Subject: [bug#39599] [PATCH 3/4] gnu: Add clojure-wrapper. Resent-Message-ID: From: Pierre Neidhardt Date: Mon, 17 Feb 2020 12:12:27 +0100 Message-Id: <20200217111228.23716-3-mail@ambrevar.xyz> In-Reply-To: <20200217111228.23716-1-mail@ambrevar.xyz> References: <20200214125144.4185-1-mail@ambrevar.xyz> <20200217111228.23716-1-mail@ambrevar.xyz> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 39599@debbugs.gnu.org * gnu/packages/clojure.scm (clojure-wrapper): New variable. --- gnu/packages/clojure.scm | 30 +++++++++++++++++++++++++++++- 1 file changed, 29 insertions(+), 1 deletion(-) diff --git a/gnu/packages/clojure.scm b/gnu/packages/clojure.scm index 9a1ceed66c..f34e4dadab 100644 --- a/gnu/packages/clojure.scm +++ b/gnu/packages/clojure.scm @@ -1,8 +1,9 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2018 Alex Vong -;;; Copyright © 2018 Pierre Neidhardt +;;; Copyright © 2018, 2020 Pierre Neidhardt ;;; Copyright © 2019 Tobias Geerinckx-Rice ;;; Copyright © 2020 Ludovic Courtès +;;; Copyright © 2020 Jesse Gibbons ;;; ;;; This file is part of GNU Guix. ;;; @@ -27,6 +28,7 @@ #:use-module (guix git-download) #:use-module (guix build-system ant) #:use-module (guix build-system clojure) + #:use-module (guix build-system copy) #:use-module (ice-9 match)) (define-public clojure @@ -321,3 +323,29 @@ tree. "The @code{tools.cli} library provides Clojure programmers with tools to work with command-line arguments.") (license license:epl1.0))) + +(define-public clojure-wrapper + (package + (name "clojure-wrapper") + (version "1.10.1.507") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/clojure/brew-install.git") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1zipz22pszv4vls4qhxkia8gm86s1wkahr0jdbqhc46mpd8n54fz")))) + (build-system copy-build-system) + (arguments + `(#:install-plan + `(("src/main/resources/" "bin/" #:include ("clj" "clojure")) + ("doc/clojure.1" "share/man/man1/") + ("epl.html" ,,(string-append "share/doc/clojure-" (package-version clojure) "/"))))) + (synopsis "Clojure launch scripts") + (description "Scripts to launch Clojure from the command line. +Without these scripts a user would need to run jar with the Clojure jar's +location.") + (home-page "https://clojure.org/") + (license license:epl1.0))) -- 2.25.0