gnu: node: Update 10.22.0.

* gnu/packages/node.scm (node): Update to 10.22.0.
[inputs]: Replace nghttp2 with nghttp2-1.41.
This commit is contained in:
Pierre Langlois 2020-08-27 02:53:45 +01:00
parent 852ae64e11
commit 235093fec0
No known key found for this signature in database
GPG key ID: A8FC9E447F4F7D54

View file

@ -6,6 +6,7 @@
;;; Copyright © 2017 Mike Gerwitz <mtg@gnu.org>
;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
;;; Copyright © 2018, 2019, 2020 Marius Bakke <mbakke@fastmail.com>
;;; Copyright © 2020 Pierre Langlois <pierre.langlois@gmx.com>
;;;
;;; This file is part of GNU Guix.
;;;
@ -46,14 +47,14 @@ (define-module (gnu packages node)
(define-public node
(package
(name "node")
(version "10.19.0")
(version "10.22.0")
(source (origin
(method url-fetch)
(uri (string-append "https://nodejs.org/dist/v" version
"/node-v" version ".tar.xz"))
(sha256
(base32
"0sginvcsf7lrlzsnpahj4bj1f673wfvby8kaxgvzlrbb7sy229v2"))
"1nz18fa550li10r0kzsm28c2rvvq61nq8bqdygip0rmvbi2paxg0"))
(modules '((guix build utils)))
(snippet
`(begin
@ -185,7 +186,7 @@ (define-public node
("http-parser" ,http-parser)
("icu4c" ,icu4c)
("libuv" ,libuv)
("nghttp2" ,nghttp2 "lib")
("nghttp2" ,nghttp2-1.41 "lib")
("openssl" ,openssl)
("zlib" ,zlib)))
(synopsis "Evented I/O for V8 JavaScript")