2014-07-01 08:47:31 +02:00
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
|
|
|
;;; Copyright © 2014 Cyrill Schenkel <cyrill.schenkel@gmail.com>
|
2015-02-03 00:14:54 +01:00
|
|
|
;;; Copyright © 2015 Andreas Enge <andreas@enge.fr>
|
2016-04-05 18:11:49 +02:00
|
|
|
;;; Copyright © 2015, 2016 David Thompson <davet@gnu.org>
|
2016-06-29 10:02:58 +02:00
|
|
|
;;; Copyright © 2016 Ludovic Courtès <ludo@gnu.org>
|
2017-11-26 02:34:12 +01:00
|
|
|
;;; Copyright © 2017 Mike Gerwitz <mtg@gnu.org>
|
2014-07-01 08:47:31 +02:00
|
|
|
;;;
|
|
|
|
;;; This file is part of GNU Guix.
|
|
|
|
;;;
|
|
|
|
;;; GNU Guix is free software; you can redistribute it and/or modify it
|
|
|
|
;;; under the terms of the GNU General Public License as published by
|
|
|
|
;;; the Free Software Foundation; either version 3 of the License, or (at
|
|
|
|
;;; your option) any later version.
|
|
|
|
;;;
|
|
|
|
;;; GNU Guix is distributed in the hope that it will be useful, but
|
|
|
|
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;;; GNU General Public License for more details.
|
|
|
|
;;;
|
|
|
|
;;; You should have received a copy of the GNU General Public License
|
|
|
|
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
(define-module (gnu packages node)
|
2015-12-07 22:59:34 +01:00
|
|
|
#:use-module ((guix licenses) #:select (expat))
|
2014-07-01 08:47:31 +02:00
|
|
|
#:use-module (guix packages)
|
|
|
|
#:use-module (guix derivations)
|
|
|
|
#:use-module (guix download)
|
2015-12-07 22:59:34 +01:00
|
|
|
#:use-module (guix build-system gnu)
|
2016-10-15 01:39:44 +02:00
|
|
|
#:use-module (gnu packages)
|
2017-05-22 20:03:21 +02:00
|
|
|
#:use-module (gnu packages adns)
|
2015-12-07 22:59:34 +01:00
|
|
|
#:use-module (gnu packages base)
|
|
|
|
#:use-module (gnu packages compression)
|
|
|
|
#:use-module (gnu packages gcc)
|
2018-03-12 17:46:03 +01:00
|
|
|
#:use-module (gnu packages icu4c)
|
2015-12-07 22:59:34 +01:00
|
|
|
#:use-module (gnu packages libevent)
|
|
|
|
#:use-module (gnu packages linux)
|
|
|
|
#:use-module (gnu packages perl)
|
2018-03-12 17:46:03 +01:00
|
|
|
#:use-module (gnu packages pkg-config)
|
2015-12-07 22:59:34 +01:00
|
|
|
#:use-module (gnu packages python)
|
2017-05-22 20:03:21 +02:00
|
|
|
#:use-module (gnu packages tls)
|
|
|
|
#:use-module (gnu packages web))
|
2014-07-01 08:47:31 +02:00
|
|
|
|
|
|
|
(define-public node
|
|
|
|
(package
|
|
|
|
(name "node")
|
2018-03-12 17:42:48 +01:00
|
|
|
(version "9.8.0")
|
2014-07-01 08:47:31 +02:00
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "http://nodejs.org/dist/v" version
|
|
|
|
"/node-v" version ".tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2018-03-12 17:46:03 +01:00
|
|
|
"1mjr1rm5w26c0yb4zq6z5yv3zbvqk18lwbswhwn1sha8hapinjp8"))
|
|
|
|
(modules '((guix build utils)))
|
|
|
|
(snippet
|
|
|
|
`(begin
|
|
|
|
;; Remove bundled software.
|
|
|
|
(for-each delete-file-recursively
|
|
|
|
'("deps/cares"
|
|
|
|
"deps/http_parser"
|
|
|
|
"deps/icu-small"
|
|
|
|
"deps/nghttp2"
|
|
|
|
"deps/openssl"
|
|
|
|
"deps/uv"
|
|
|
|
"deps/zlib"))
|
|
|
|
(substitute* "Makefile"
|
|
|
|
;; Remove references to bundled software
|
|
|
|
(("deps/http_parser/http_parser.gyp") "")
|
|
|
|
(("deps/uv/include/\\*.h") "")
|
|
|
|
(("deps/uv/uv.gyp") "")
|
gnu: All snippets report errors using exceptions, else return #t.
* gnu/packages/admin.scm, gnu/packages/algebra.scm, gnu/packages/audio.scm,
gnu/packages/backup.scm, gnu/packages/base.scm,
gnu/packages/bioinformatics.scm, gnu/packages/cdrom.scm,
gnu/packages/chez.scm, gnu/packages/code.scm, gnu/packages/compression.scm,
gnu/packages/cross-base.scm, gnu/packages/crypto.scm, gnu/packages/cups.scm,
gnu/packages/databases.scm, gnu/packages/dns.scm, gnu/packages/emacs.scm,
gnu/packages/emulators.scm, gnu/packages/engineering.scm,
gnu/packages/enlightenment.scm, gnu/packages/fpga.scm,
gnu/packages/freedesktop.scm, gnu/packages/ftp.scm, gnu/packages/games.scm,
gnu/packages/gcc.scm, gnu/packages/geo.scm, gnu/packages/ghostscript.scm,
gnu/packages/gl.scm, gnu/packages/glib.scm, gnu/packages/gnome.scm,
gnu/packages/gnuzilla.scm, gnu/packages/graphics.scm, gnu/packages/gtk.scm,
gnu/packages/guile.scm, gnu/packages/irc.scm, gnu/packages/java.scm,
gnu/packages/kerberos.scm, gnu/packages/linux.scm, gnu/packages/lisp.scm,
gnu/packages/lxde.scm, gnu/packages/machine-learning.scm,
gnu/packages/mail.scm, gnu/packages/maths.scm, gnu/packages/messaging.scm,
gnu/packages/monitoring.scm, gnu/packages/mp3.scm, gnu/packages/music.scm,
gnu/packages/netpbm.scm, gnu/packages/networking.scm, gnu/packages/node.scm,
gnu/packages/nvi.scm, gnu/packages/ocaml.scm, gnu/packages/pdf.scm,
gnu/packages/perl.scm, gnu/packages/php.scm, gnu/packages/plotutils.scm,
gnu/packages/pretty-print.scm, gnu/packages/profiling.scm,
gnu/packages/pulseaudio.scm, gnu/packages/python-crypto.scm,
gnu/packages/python.scm, gnu/packages/qt.scm, gnu/packages/robotics.scm,
gnu/packages/sawfish.scm, gnu/packages/scanner.scm, gnu/packages/scheme.scm,
gnu/packages/scribus.scm, gnu/packages/sdl.scm,
gnu/packages/serialization.scm, gnu/packages/shells.scm,
gnu/packages/slang.scm, gnu/packages/smalltalk.scm, gnu/packages/ssh.scm,
gnu/packages/sync.scm, gnu/packages/syncthing.scm, gnu/packages/tbb.scm,
gnu/packages/terminals.scm, gnu/packages/texinfo.scm,
gnu/packages/text-editors.scm, gnu/packages/textutils.scm,
gnu/packages/tls.scm, gnu/packages/unrtf.scm,
gnu/packages/version-control.scm, gnu/packages/video.scm,
gnu/packages/vpn.scm, gnu/packages/web.scm, gnu/packages/wm.scm,
gnu/packages/wxwidgets.scm, gnu/packages/xdisorg.scm, gnu/packages/xorg.scm:
In all snippets, report errors using exceptions, or else return #t.
2018-03-16 12:47:34 +01:00
|
|
|
(("deps/zlib/zlib.gyp") ""))
|
|
|
|
#t))))
|
2014-07-01 08:47:31 +02:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(arguments
|
2017-05-22 20:03:21 +02:00
|
|
|
;; TODO: Purge the bundled copies from the source.
|
2018-03-12 17:46:03 +01:00
|
|
|
'(#:configure-flags '("--shared-cares"
|
2017-05-22 20:03:21 +02:00
|
|
|
"--shared-http-parser"
|
2018-03-12 17:46:03 +01:00
|
|
|
"--shared-libuv"
|
|
|
|
"--shared-nghttp2"
|
|
|
|
"--shared-openssl"
|
|
|
|
"--shared-zlib"
|
|
|
|
"--without-snapshot"
|
|
|
|
"--with-intl=system-icu")
|
2015-12-07 22:59:34 +01:00
|
|
|
#:phases
|
|
|
|
(modify-phases %standard-phases
|
2016-04-05 18:11:49 +02:00
|
|
|
(add-before 'configure 'patch-files
|
|
|
|
(lambda* (#:key inputs #:allow-other-keys)
|
|
|
|
;; Fix hardcoded /bin/sh references.
|
|
|
|
(substitute* '("lib/child_process.js"
|
|
|
|
"lib/internal/v8_prof_polyfill.js"
|
2017-04-17 14:55:16 +02:00
|
|
|
"test/parallel/test-child-process-spawnsync-shell.js"
|
2016-04-05 18:11:49 +02:00
|
|
|
"test/parallel/test-stdio-closed.js")
|
|
|
|
(("'/bin/sh'")
|
2017-01-23 22:05:49 +01:00
|
|
|
(string-append "'" (which "sh") "'")))
|
2016-04-05 18:11:49 +02:00
|
|
|
|
|
|
|
;; Fix hardcoded /usr/bin/env references.
|
|
|
|
(substitute* '("test/parallel/test-child-process-default-options.js"
|
|
|
|
"test/parallel/test-child-process-env.js"
|
|
|
|
"test/parallel/test-child-process-exec-env.js")
|
|
|
|
(("'/usr/bin/env'")
|
|
|
|
(string-append "'" (which "env") "'")))
|
|
|
|
|
2017-12-24 22:58:00 +01:00
|
|
|
;; FIXME: These tests depend on being able to install eslint.
|
|
|
|
;; See https://github.com/nodejs/node/issues/17098.
|
2017-06-22 15:04:55 +02:00
|
|
|
(for-each delete-file
|
2018-03-12 17:42:48 +01:00
|
|
|
'("test/parallel/test-eslint-alphabetize-errors.js"
|
2017-12-24 22:58:00 +01:00
|
|
|
"test/parallel/test-eslint-buffer-constructor.js"
|
|
|
|
"test/parallel/test-eslint-documented-errors.js"
|
2018-03-12 17:42:48 +01:00
|
|
|
"test/parallel/test-eslint-inspector-check.js"))
|
2017-12-24 22:58:00 +01:00
|
|
|
|
2016-04-05 18:11:49 +02:00
|
|
|
;; FIXME: These tests fail in the build container, but they don't
|
|
|
|
;; seem to be indicative of real problems in practice.
|
|
|
|
(for-each delete-file
|
2017-06-22 15:04:55 +02:00
|
|
|
'("test/async-hooks/test-ttywrap.readstream.js"
|
|
|
|
"test/parallel/test-util-inspect.js"
|
|
|
|
"test/parallel/test-v8-serdes.js"
|
|
|
|
"test/parallel/test-dgram-membership.js"
|
2017-10-23 22:04:15 +02:00
|
|
|
"test/parallel/test-dns-cancel-reverse-lookup.js"
|
2017-07-27 17:11:08 +02:00
|
|
|
"test/parallel/test-dns-resolveany.js"
|
2016-10-15 01:39:44 +02:00
|
|
|
"test/parallel/test-cluster-master-error.js"
|
2016-04-05 18:11:49 +02:00
|
|
|
"test/parallel/test-cluster-master-kill.js"
|
2018-02-02 17:21:06 +01:00
|
|
|
"test/parallel/test-net-listen-after-destroying-stdin.js"
|
2016-04-05 18:11:49 +02:00
|
|
|
"test/parallel/test-npm-install.js"
|
2017-05-22 20:03:20 +02:00
|
|
|
"test/sequential/test-child-process-emfile.js"
|
|
|
|
"test/sequential/test-benchmark-child-process.js"
|
|
|
|
"test/sequential/test-http-regr-gh-2928.js"))
|
2016-04-05 18:11:49 +02:00
|
|
|
#t))
|
|
|
|
(replace 'configure
|
|
|
|
;; Node's configure script is actually a python script, so we can't
|
|
|
|
;; run it with bash.
|
|
|
|
(lambda* (#:key outputs (configure-flags '()) inputs
|
|
|
|
#:allow-other-keys)
|
|
|
|
(let* ((prefix (assoc-ref outputs "out"))
|
|
|
|
(flags (cons (string-append "--prefix=" prefix)
|
|
|
|
configure-flags)))
|
|
|
|
(format #t "build directory: ~s~%" (getcwd))
|
|
|
|
(format #t "configure flags: ~s~%" flags)
|
|
|
|
;; Node's configure script expects the CC environment variable to
|
|
|
|
;; be set.
|
|
|
|
(setenv "CC" (string-append (assoc-ref inputs "gcc") "/bin/gcc"))
|
|
|
|
(zero? (apply system*
|
|
|
|
(string-append (assoc-ref inputs "python")
|
|
|
|
"/bin/python")
|
2016-06-29 10:02:58 +02:00
|
|
|
"configure" flags)))))
|
2016-10-15 01:39:44 +02:00
|
|
|
(add-after 'patch-shebangs 'patch-npm-shebang
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
(let* ((bindir (string-append (assoc-ref outputs "out")
|
|
|
|
"/bin"))
|
|
|
|
(npm (string-append bindir "/npm"))
|
2016-06-29 10:02:58 +02:00
|
|
|
(target (readlink npm)))
|
2016-10-15 01:39:44 +02:00
|
|
|
(with-directory-excursion bindir
|
|
|
|
(patch-shebang target (list bindir))
|
|
|
|
#t)))))))
|
2015-12-07 22:59:34 +01:00
|
|
|
(native-inputs
|
|
|
|
`(("python" ,python-2)
|
|
|
|
("perl" ,perl)
|
2018-03-12 17:46:03 +01:00
|
|
|
("pkg-config" ,pkg-config)
|
2016-04-05 18:11:49 +02:00
|
|
|
("procps" ,procps)
|
2015-12-07 22:59:34 +01:00
|
|
|
("util-linux" ,util-linux)
|
|
|
|
("which" ,which)))
|
2016-08-23 04:41:28 +02:00
|
|
|
(native-search-paths
|
|
|
|
(list (search-path-specification
|
|
|
|
(variable "NODE_PATH")
|
|
|
|
(files '("lib/node_modules")))))
|
2015-12-07 22:59:34 +01:00
|
|
|
(inputs
|
2017-05-22 20:03:21 +02:00
|
|
|
`(("c-ares" ,c-ares)
|
|
|
|
("http-parser" ,http-parser)
|
2018-03-12 17:46:03 +01:00
|
|
|
("icu4c" ,icu4c)
|
2017-05-22 20:03:21 +02:00
|
|
|
("libuv" ,libuv)
|
2018-03-12 17:46:03 +01:00
|
|
|
("nghttp2" ,nghttp2 "lib")
|
2015-12-07 22:59:34 +01:00
|
|
|
("openssl" ,openssl)
|
|
|
|
("zlib" ,zlib)))
|
2015-08-03 16:00:11 +02:00
|
|
|
(synopsis "Evented I/O for V8 JavaScript")
|
2014-07-01 08:47:31 +02:00
|
|
|
(description "Node.js is a platform built on Chrome's JavaScript runtime
|
|
|
|
for easily building fast, scalable network applications. Node.js uses an
|
|
|
|
event-driven, non-blocking I/O model that makes it lightweight and efficient,
|
|
|
|
perfect for data-intensive real-time applications that run across distributed
|
|
|
|
devices.")
|
2015-12-07 22:59:34 +01:00
|
|
|
(home-page "http://nodejs.org/")
|
2017-04-17 14:55:16 +02:00
|
|
|
(license expat)
|
2017-04-17 16:59:17 +02:00
|
|
|
(properties '((timeout . 3600))))) ; 1 h
|