summaryrefslogtreecommitdiff
path: root/clojure.scm
diff options
context:
space:
mode:
Diffstat (limited to 'clojure.scm')
-rw-r--r--clojure.scm87
1 files changed, 87 insertions, 0 deletions
diff --git a/clojure.scm b/clojure.scm
new file mode 100644
index 0000000..652e900
--- /dev/null
+++ b/clojure.scm
@@ -0,0 +1,87 @@
+;;; GNU Guix --- Functional package management for GNU
+;;; Copyright © 2015 Eric Dvorsak <eric@dvorsak.fr>
+;;;
+;;; This file is part of GNU Guix.
+;;;
+;;; GNU Guix is free software; you can redistribute it and/or modify it
+;;; under the terms of the GNU General Public License as published by
+;;; the Free Software Foundation; either version 3 of the License, or (at
+;;; your option) any later version.
+;;;
+;;; GNU Guix is distributed in the hope that it will be useful, but
+;;; WITHOUT ANY WARRANTY; without even the implied warranty of
+;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+;;; GNU General Public License for more details.
+;;;
+;;; You should have received a copy of the GNU General Public License
+;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
+
+(define-module (clojure)
+ #:use-module ((guix licenses) #:prefix license:)
+ #:use-module (guix packages)
+ #:use-module (guix download)
+ #:use-module (guix git-download)
+ #:use-module (guix utils)
+ #:use-module (guix build-system gnu)
+ #:use-module (gnu packages)
+ #:use-module (gnu packages java))
+
+(define lein-pkg
+ (origin
+ (method url-fetch)
+ (uri "https://raw.github.com/technomancy/leiningen/2.5.1/bin/lein-pkg")
+ (sha256
+ (base32
+ "0pqqb2bh0a17426diwyhk5vbxcfz45rppbxmjydsmai94jm3cgix"))))
+
+(define builder.sh
+ (origin
+ (method url-fetch)
+ (uri "https://raw.githubusercontent.com/NixOS/nixpkgs/0761f81da71fc6a940c7f51129b6c7717db78e87/pkgs/development/tools/build-managers/leiningen/builder.sh")
+ (sha256
+ (base32
+ "10qsz16pnhccwdl34w043kl3c3prkpi1cv4rpzfjfmcqa8kjcny8"))))
+
+
+(define-public leiningen
+ (package
+ (name "leiningen")
+ (version "2.5.1")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append
+ "https://github.com/technomancy/leiningen/releases/download/"
+ version "/leiningen-" version "-standalone.zip"))
+ (sha256
+ (base32
+ "1irl3w66xq1xbbs4g10dnw1vknfw8al70nhr744gfn2za27w0xdl"))))
+ (build-system gnu-build-system)
+ (arguments
+ `(#:tests? #f ; no "check" target
+ #:phases
+ (modify-phases %standard-phases
+
+ (replace 'build
+ (lambda _
+ (setenv "JAVA_HOME"
+ (assoc-ref %build-inputs "icedtea7"))
+ ;; Disable tests to avoid dependency on hamcrest-core, which needs
+ ;; Ant to build. This is necessary in addition to disabling the
+ ;; "check" phase, because the dependency on "test-jar" would always
+ ;; result in the tests to be run.
+ (zero? (system* "bash" "builder.sh"
+ (string-append "-Ddist.dir="
+ (assoc-ref %outputs "out"))))))
+ (delete 'configure)
+ (delete 'unpack)
+ (delete 'install))))
+ (native-inputs
+ `(("builder.sh" ,builder.sh)
+ ("lein-pkg" ,lein-pkg)))
+ (inputs
+ `(("icedtea7" ,icedtea7 "jdk")))
+ (home-page "http://leiningen.org/")
+ (synopsis "Project automation for Clojure")
+ (description
+ "")
+ (license license:epl1.0)))