>From ce8b4e85b03ed76fb671a4d554f966b7eac00b8d Mon Sep 17 00:00:00 2001 From: Roel Janssen Date: Wed, 2 May 2018 22:11:34 +0200 Subject: [PATCH] gnu: gnuzilla: Add mozjs-52. * gnu/packages/gnuzilla.scm (mozjs-52): New variable. --- gnu/packages/gnuzilla.scm | 62 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) diff --git a/gnu/packages/gnuzilla.scm b/gnu/packages/gnuzilla.scm index d7f80014b..59427fe12 100644 --- a/gnu/packages/gnuzilla.scm +++ b/gnu/packages/gnuzilla.scm @@ -247,6 +247,68 @@ in C/C++.") ("icu4c" ,icu4c) ("zlib" ,zlib))))) +(define-public mozjs-52 + (package + (inherit mozjs) + (name "mozjs") + (version "52.7.4") + (source (origin + (method url-fetch) + (uri (string-append + "https://queue.taskcluster.net/v1/task/" + "YqG2fjJJSTGzGX090FjDYg/runs/0/artifacts/" + "public/build/mozjs-" version ".tar.bz2")) + (sha256 + (base32 + "1bc83h2268lfj7h9i8s7dk0hbh1q92fdk5bi3688ybn95xipz185")) + (modules '((guix build utils))) + (snippet + '(begin + ;; Remove bundled libraries. + (for-each delete-file-recursively + '("js/src/ctypes/libffi" + "js/src/ctypes/libffi-patches" + "modules/zlib")) + #t)))) + (arguments + `(#:tests? #f ; Needs Mercurial or Git repository to be avalable. + #:phases + (modify-phases %standard-phases + (replace 'configure + (lambda* (#:key inputs outputs #:allow-other-keys) + (let ((out (assoc-ref outputs "out"))) + (chdir "js/src") + (setenv "SHELL" (which "sh")) + (setenv "CONFIG_SHELL" (which "sh")) + (setenv "AUTOCONF" (string-append + (assoc-ref inputs "autoconf") + "/bin/autoreconf")) + (zero? (system* "./configure" + (string-append "--prefix=" out) + "--enable-ctypes" + "--enable-optimize" + "--enable-pie" + "--enable-readline" + "--enable-shared-js" + "--enable-system-ffi" + "--with-system-icu" + "--with-system-nspr" + "--with-system-zlib" + + ;; Intl API requires bundled ICU. + "--without-intl-api")))))))) + (native-inputs + `(("perl" ,perl) + ("autoconf" ,autoconf) + ("pkg-config" ,pkg-config) + ("python-2" ,python-2) + ("which" ,which))) + (inputs + `(("libffi" ,libffi) + ("readline" ,readline) + ("icu4c" ,icu4c) + ("zlib" ,zlib))))) + (define-public nspr (package (name "nspr") -- 2.17.0