mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: elixir: Update to 1.17.3.
* gnu/packages/elixir.scm (elixir): Update to 1.17.3. [arguments]<#:phases>: Add 'disable-some-logger-tests-for-erlang-27.1+ phase. Change-Id: I1adf3a24656b291f57cfb29812cf034130552506 Signed-off-by: Andrew Tropin <andrew@trop.in>
This commit is contained in:
parent
5fa4b5cb99
commit
60dfa7f673
1 changed files with 10 additions and 2 deletions
|
@ -41,7 +41,7 @@ (define-module (gnu packages elixir)
|
||||||
(define-public elixir
|
(define-public elixir
|
||||||
(package
|
(package
|
||||||
(name "elixir")
|
(name "elixir")
|
||||||
(version "1.17.2")
|
(version "1.17.3")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
|
@ -50,7 +50,7 @@ (define-public elixir
|
||||||
(commit (string-append "v" version))))
|
(commit (string-append "v" version))))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "063pfz6ljy22b4nyvk8pi8ggqb6nmzqcca08vnl3h9xgh1zzddpj"))
|
(base32 "171l6g304044yk6i0827hgl64vp122ygn1wa1xqdjhw08b5kl2pd"))
|
||||||
(patches (search-patches "elixir-path-length.patch"))))
|
(patches (search-patches "elixir-path-length.patch"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
|
@ -127,6 +127,14 @@ (define-public elixir
|
||||||
(lambda* (#:key inputs #:allow-other-keys)
|
(lambda* (#:key inputs #:allow-other-keys)
|
||||||
;; Some tests require access to a home directory.
|
;; Some tests require access to a home directory.
|
||||||
(setenv "HOME" "/tmp")))
|
(setenv "HOME" "/tmp")))
|
||||||
|
;; Temporarily skip several tests related to logger to pass
|
||||||
|
;; under Erlang 27.1. For more info see:
|
||||||
|
;; https://elixirforum.com/t/elixir-v1-17-3-released/66156/2
|
||||||
|
(add-before 'check 'disable-some-logger-tests-for-erlang-27.1+
|
||||||
|
(lambda _
|
||||||
|
(substitute* "lib/logger/test/logger/translator_test.exs"
|
||||||
|
(("test \"translates Supervisor progress")
|
||||||
|
"@tag :skip\n test \"translates Supervisor progress"))))
|
||||||
(delete 'configure)
|
(delete 'configure)
|
||||||
(add-after 'install 'wrap-programs
|
(add-after 'install 'wrap-programs
|
||||||
(lambda* (#:key inputs outputs #:allow-other-keys)
|
(lambda* (#:key inputs outputs #:allow-other-keys)
|
||||||
|
|
Loading…
Reference in a new issue