gnu: mozjs@24: Use more inherited fields.
* gnu/packages/gnuzilla.scm (mozjs@24)[arguments]: Use 'substitute-keyword-arguments', override inherited 'configure. [native-inputs]: Remove field to use inherited native-inputs. [propagated-inputs]: Same.
This commit is contained in:
parent
56486b3a40
commit
aaac423cc4
|
@ -28,6 +28,7 @@
|
||||||
#:use-module ((guix licenses) #:prefix license:)
|
#:use-module ((guix licenses) #:prefix license:)
|
||||||
#:use-module (guix packages)
|
#:use-module (guix packages)
|
||||||
#:use-module (guix download)
|
#:use-module (guix download)
|
||||||
|
#:use-module (guix utils)
|
||||||
#:use-module (guix build-system gnu)
|
#:use-module (guix build-system gnu)
|
||||||
#:use-module (gnu packages base)
|
#:use-module (gnu packages base)
|
||||||
#:use-module (gnu packages databases)
|
#:use-module (gnu packages databases)
|
||||||
|
@ -135,20 +136,13 @@ in C/C++.")
|
||||||
'(substitute* '("js/src/config/milestone.pl")
|
'(substitute* '("js/src/config/milestone.pl")
|
||||||
(("defined\\(@TEMPLATE_FILE)") "@TEMPLATE_FILE")))))
|
(("defined\\(@TEMPLATE_FILE)") "@TEMPLATE_FILE")))))
|
||||||
(arguments
|
(arguments
|
||||||
`(;; XXX: parallel build fails, lacking:
|
(substitute-keyword-arguments (package-arguments mozjs)
|
||||||
;; mkdir -p "system_wrapper_js/"
|
((#:phases phases)
|
||||||
#:parallel-build? #f
|
`(modify-phases ,phases
|
||||||
#:phases
|
(replace 'configure
|
||||||
(modify-phases %standard-phases
|
|
||||||
(add-after 'unpack 'delete-timedout-test
|
|
||||||
;; This test times out on slower hardware
|
|
||||||
(lambda _ (delete-file "js/src/jit-test/tests/basic/bug698584.js")))
|
|
||||||
(replace
|
|
||||||
'configure
|
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
(let ((out (assoc-ref outputs "out")))
|
(let ((out (assoc-ref outputs "out")))
|
||||||
(chdir "js/src")
|
;; configure fails if it is followed by SHELL and CONFIG_SHELL
|
||||||
;; configure fails if it is follwed by SHELL and CONFIG_SHELL
|
|
||||||
(setenv "SHELL" (which "sh"))
|
(setenv "SHELL" (which "sh"))
|
||||||
(setenv "CONFIG_SHELL" (which "sh"))
|
(setenv "CONFIG_SHELL" (which "sh"))
|
||||||
(zero? (system* "./configure"
|
(zero? (system* "./configure"
|
||||||
|
@ -159,13 +153,7 @@ in C/C++.")
|
||||||
,@(if (string=? "aarch64-linux"
|
,@(if (string=? "aarch64-linux"
|
||||||
(%current-system))
|
(%current-system))
|
||||||
'("--host=aarch64-unknown-linux-gnu")
|
'("--host=aarch64-unknown-linux-gnu")
|
||||||
'())))))))))
|
'()))))))))))
|
||||||
(native-inputs
|
|
||||||
`(("perl" ,perl)
|
|
||||||
("pkg-config" ,pkg-config)
|
|
||||||
("python" ,python-2)))
|
|
||||||
(propagated-inputs
|
|
||||||
`(("nspr" ,nspr))) ; in the Requires.private field of mozjs-24.pc
|
|
||||||
(inputs
|
(inputs
|
||||||
`(("libffi" ,libffi)
|
`(("libffi" ,libffi)
|
||||||
("zlib" ,zlib)))))
|
("zlib" ,zlib)))))
|
||||||
|
|
Loading…
Reference in New Issue