blob: 652e900222c6a32bf8753972140af7b057c863bd (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
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)))
|