gnu: perl-clone: Update to 0.43.
[jackhill/guix/guix.git] / gnu / packages / elixir.scm
CommitLineData
0a4ebe01
PP
1;;; GNU Guix --- Functional package management for GNU
2;;; Copyright © 2016 Leo Famulari <leo@famulari.name>
151960e4 3;;; Copyright © 2016, 2017 Pjotr Prins <pjotr.guix@thebird.nl>
0a4ebe01 4;;; Copyright © 2016 Ricardo Wurmus <rekado@elephly.net>
6de3d176 5;;; Copyright © 2017 nee <nee.git@cock.li>
dc555d86 6;;; Copyright © 2018, 2019 Tobias Geerinckx-Rice <me@tobias.gr>
47956fa0 7;;; Copyright © 2018 ng0 <ng0@n0.is>
0a4ebe01
PP
8;;;
9;;; This file is part of GNU Guix.
10;;;
11;;; GNU Guix is free software; you can redistribute it and/or modify it
12;;; under the terms of the GNU General Public License as published by
13;;; the Free Software Foundation; either version 3 of the License, or (at
14;;; your option) any later version.
15;;;
16;;; GNU Guix is distributed in the hope that it will be useful, but
17;;; WITHOUT ANY WARRANTY; without even the implied warranty of
18;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19;;; GNU General Public License for more details.
20;;;
21;;; You should have received a copy of the GNU General Public License
22;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
23
24(define-module (gnu packages elixir)
25 #:use-module ((guix licenses) #:prefix license:)
26 #:use-module (guix build-system gnu)
27 #:use-module (guix download)
28 #:use-module (guix packages)
29 #:use-module (gnu packages)
30 #:use-module (gnu packages erlang)
31 #:use-module (gnu packages version-control))
32
33(define-public elixir
34 (package
35 (name "elixir")
dc555d86 36 (version "1.8.2")
0a4ebe01
PP
37 (source (origin
38 (method url-fetch)
39 (uri (string-append "https://github.com/elixir-lang/elixir"
40 "/archive/v" version ".tar.gz"))
41 (file-name (string-append name "-" version ".tar.gz"))
42 (sha256
43 (base32
dc555d86 44 "0ddqxw24zdqlg7glzk22m7qjal8f18divzp364a6gi1bv6rg16yg"))
2f87048d 45 (patches (search-patches "elixir-path-length.patch"))))
0a4ebe01
PP
46 (build-system gnu-build-system)
47 (arguments
48 `(#:test-target "test"
e345274a 49 #:parallel-tests? #f ;see <https://debbugs.gnu.org/cgi/bugreport.cgi?bug=32171#23>
0a4ebe01
PP
50 #:make-flags (list (string-append "PREFIX="
51 (assoc-ref %outputs "out")))
52 #:phases
53 (modify-phases %standard-phases
54 (add-after 'unpack 'replace-paths
6de3d176 55 (lambda* (#:key inputs outputs #:allow-other-keys)
56 (let ((out (assoc-ref outputs "out")))
57 (substitute* '("lib/elixir/lib/system.ex"
58 "lib/mix/lib/mix/scm/git.ex")
59 (("(cmd\\(['\"])git" _ prefix)
60 (string-append prefix (which "git"))))
61 (substitute* "bin/elixir"
62 (("ERL_EXEC=\"erl\"")
63 (string-append "ERL_EXEC=" (which "erl"))))
64 (substitute* "bin/mix"
65 (("#!/usr/bin/env elixir")
66 (string-append "#!" out "/bin/elixir"))))
0a4ebe01 67 #t))
0a4ebe01
PP
68 (add-before 'build 'make-current
69 ;; The Elixir compiler checks whether or not to compile files by
70 ;; inspecting their timestamps. When the timestamp is equal to the
71 ;; epoch no compilation will be performed. Some tests fail when
72 ;; files are older than Jan 1, 2000.
73 (lambda _
74 (for-each (lambda (file)
75 (let ((recent 1400000000))
76 (utime file recent recent 0 0)))
77 (find-files "." ".*"))
78 #t))
e7a25d2a
CB
79 (add-before 'check 'set-home
80 (lambda* (#:key inputs #:allow-other-keys)
81 ;; Some tests require access to a home directory.
82 (setenv "HOME" "/tmp")
83 #t))
0a4ebe01
PP
84 (delete 'configure))))
85 (inputs
86 `(("erlang" ,erlang)
87 ("git" ,git)))
2f87048d 88 (home-page "https://elixir-lang.org/")
0a4ebe01
PP
89 (synopsis "Elixir programming language")
90 (description "Elixir is a dynamic, functional language used to build
91scalable and maintainable applications. Elixir leverages the Erlang VM, known
92for running low-latency, distributed and fault-tolerant systems, while also
93being successfully used in web development and the embedded software domain.")
94 (license license:asl2.0)))