gnu: node: Update to 7.10.0.
[jackhill/guix/guix.git] / gnu / packages / node.scm
CommitLineData
ed02caff
CS
1;;; GNU Guix --- Functional package management for GNU
2;;; Copyright © 2014 Cyrill Schenkel <cyrill.schenkel@gmail.com>
20fbd209 3;;; Copyright © 2015 Andreas Enge <andreas@enge.fr>
c5b5e275 4;;; Copyright © 2015, 2016 David Thompson <davet@gnu.org>
2de091f0 5;;; Copyright © 2016 Ludovic Courtès <ludo@gnu.org>
ed02caff
CS
6;;;
7;;; This file is part of GNU Guix.
8;;;
9;;; GNU Guix is free software; you can redistribute it and/or modify it
10;;; under the terms of the GNU General Public License as published by
11;;; the Free Software Foundation; either version 3 of the License, or (at
12;;; your option) any later version.
13;;;
14;;; GNU Guix is distributed in the hope that it will be useful, but
15;;; WITHOUT ANY WARRANTY; without even the implied warranty of
16;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17;;; GNU General Public License for more details.
18;;;
19;;; You should have received a copy of the GNU General Public License
20;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
21
22(define-module (gnu packages node)
1eca745b 23 #:use-module ((guix licenses) #:select (expat))
ed02caff
CS
24 #:use-module (guix packages)
25 #:use-module (guix derivations)
26 #:use-module (guix download)
1eca745b 27 #:use-module (guix build-system gnu)
dd04f56a 28 #:use-module (gnu packages)
1eca745b
DT
29 #:use-module (gnu packages base)
30 #:use-module (gnu packages compression)
31 #:use-module (gnu packages gcc)
32 #:use-module (gnu packages libevent)
33 #:use-module (gnu packages linux)
34 #:use-module (gnu packages perl)
35 #:use-module (gnu packages python)
36 #:use-module (gnu packages tls))
ed02caff
CS
37
38(define-public node
39 (package
40 (name "node")
1fdb8830 41 (version "7.10.0")
ed02caff
CS
42 (source (origin
43 (method url-fetch)
44 (uri (string-append "http://nodejs.org/dist/v" version
45 "/node-v" version ".tar.gz"))
46 (sha256
47 (base32
1fdb8830 48 "00vdmb0z8b2sd547bkksgy9dfq5gi5xfd9b3f0rc4ngvpzl3z164"))
dd04f56a
AM
49 ;; https://github.com/nodejs/node/pull/9077
50 (patches (search-patches "node-9077.patch"))))
ed02caff
CS
51 (build-system gnu-build-system)
52 (arguments
1eca745b 53 ;; TODO: Package http_parser and add --shared-http-parser.
c5b5e275
DT
54 '(#:configure-flags '("--shared-openssl"
55 "--shared-zlib"
56 "--shared-libuv"
57 "--without-snapshot")
1eca745b
DT
58 #:phases
59 (modify-phases %standard-phases
c5b5e275
DT
60 (add-before 'configure 'patch-files
61 (lambda* (#:key inputs #:allow-other-keys)
62 ;; Fix hardcoded /bin/sh references.
63 (substitute* '("lib/child_process.js"
64 "lib/internal/v8_prof_polyfill.js"
3759deab 65 "test/parallel/test-child-process-spawnsync-shell.js"
c5b5e275
DT
66 "test/parallel/test-stdio-closed.js")
67 (("'/bin/sh'")
f2ea722a 68 (string-append "'" (which "sh") "'")))
c5b5e275
DT
69
70 ;; Fix hardcoded /usr/bin/env references.
71 (substitute* '("test/parallel/test-child-process-default-options.js"
72 "test/parallel/test-child-process-env.js"
73 "test/parallel/test-child-process-exec-env.js")
74 (("'/usr/bin/env'")
75 (string-append "'" (which "env") "'")))
76
77 ;; Having the build fail because of linter errors is insane!
78 (substitute* '("Makefile")
79 ((" \\$\\(MAKE\\) jslint") "")
80 ((" \\$\\(MAKE\\) cpplint\n") ""))
81
82 ;; FIXME: These tests fail in the build container, but they don't
83 ;; seem to be indicative of real problems in practice.
84 (for-each delete-file
dd04f56a
AM
85 '("test/parallel/test-dgram-membership.js"
86 "test/parallel/test-cluster-master-error.js"
c5b5e275
DT
87 "test/parallel/test-cluster-master-kill.js"
88 "test/parallel/test-npm-install.js"
1fdb8830
JL
89 "test/sequential/test-child-process-emfile.js"
90 "test/sequential/test-benchmark-child-process.js"
91 "test/sequential/test-http-regr-gh-2928.js"))
c5b5e275
DT
92 #t))
93 (replace 'configure
94 ;; Node's configure script is actually a python script, so we can't
95 ;; run it with bash.
96 (lambda* (#:key outputs (configure-flags '()) inputs
97 #:allow-other-keys)
98 (let* ((prefix (assoc-ref outputs "out"))
99 (flags (cons (string-append "--prefix=" prefix)
100 configure-flags)))
101 (format #t "build directory: ~s~%" (getcwd))
102 (format #t "configure flags: ~s~%" flags)
103 ;; Node's configure script expects the CC environment variable to
104 ;; be set.
105 (setenv "CC" (string-append (assoc-ref inputs "gcc") "/bin/gcc"))
106 (zero? (apply system*
107 (string-append (assoc-ref inputs "python")
108 "/bin/python")
2de091f0 109 "configure" flags)))))
dd04f56a
AM
110 (add-after 'patch-shebangs 'patch-npm-shebang
111 (lambda* (#:key outputs #:allow-other-keys)
112 (let* ((bindir (string-append (assoc-ref outputs "out")
113 "/bin"))
114 (npm (string-append bindir "/npm"))
2de091f0 115 (target (readlink npm)))
dd04f56a
AM
116 (with-directory-excursion bindir
117 (patch-shebang target (list bindir))
118 #t)))))))
1eca745b
DT
119 (native-inputs
120 `(("python" ,python-2)
121 ("perl" ,perl)
c5b5e275 122 ("procps" ,procps)
1eca745b
DT
123 ("util-linux" ,util-linux)
124 ("which" ,which)))
125 (inputs
126 `(("libuv" ,libuv)
127 ("openssl" ,openssl)
128 ("zlib" ,zlib)))
2d094239 129 (synopsis "Evented I/O for V8 JavaScript")
ed02caff
CS
130 (description "Node.js is a platform built on Chrome's JavaScript runtime
131for easily building fast, scalable network applications. Node.js uses an
132event-driven, non-blocking I/O model that makes it lightweight and efficient,
133perfect for data-intensive real-time applications that run across distributed
134devices.")
1eca745b 135 (home-page "http://nodejs.org/")
3759deab 136 (license expat)
e5f0563d 137 (properties '((timeout . 3600))))) ; 1 h