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