gnu: ruby-ae: Fix build failure with ruby@2.4.0.
* gnu/packages/ruby.scm (ruby-ae)[arguments]<#:phases>: Add 'replace-broken-symlink'.
This commit is contained in:
parent
0899352f97
commit
de6f6efd73
|
@ -3788,7 +3788,19 @@ requirement specifications systems like Cucumber.")
|
||||||
`(#:phases
|
`(#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(replace 'check
|
(replace 'check
|
||||||
(lambda _ (zero? (system* "qed")))))))
|
(lambda _ (zero? (system* "qed"))))
|
||||||
|
(add-before 'validate-runpath 'replace-broken-symlink
|
||||||
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
|
(let* ((out (assoc-ref outputs "out"))
|
||||||
|
(file (string-append out "/lib/ruby/gems/"
|
||||||
|
,(package-version ruby)
|
||||||
|
"/gems/ae-" ,version
|
||||||
|
"/lib/ae.yml")))
|
||||||
|
;; XXX: This symlink is broken since ruby 2.4.
|
||||||
|
;; https://lists.gnu.org/archive/html/guix-devel/2017-06/msg00034.html
|
||||||
|
(delete-file file)
|
||||||
|
(symlink "../.index" file)
|
||||||
|
#t))))))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
`(("ruby-ansi" ,ruby-ansi)))
|
`(("ruby-ansi" ,ruby-ansi)))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
|
|
Loading…
Reference in New Issue