gnu: node: Update to 10.22.1.
This follows up on 3eb34c66b4
which left an
unbound "nghttp2-1.41" variable.
* gnu/packages/node.scm (node): Update to 10.22.1.
(node-10.22): Remove variable.
* gnu/packages/gnuzilla.scm (icecat)[native-inputs]: Change from NODE-10.22 to
NODE.
(icedove)[native-inputs]: Likewise.
master
parent
3eb34c66b4
commit
18f10c0b12
|
@ -791,7 +791,7 @@ from forcing GEXP-PROMISE."
|
||||||
("llvm" ,llvm)
|
("llvm" ,llvm)
|
||||||
("clang" ,clang)
|
("clang" ,clang)
|
||||||
("perl" ,perl)
|
("perl" ,perl)
|
||||||
("node" ,node-10.22)
|
("node" ,node)
|
||||||
("python" ,python)
|
("python" ,python)
|
||||||
("python-2" ,python-2)
|
("python-2" ,python-2)
|
||||||
("python2-pysqlite" ,python2-pysqlite)
|
("python2-pysqlite" ,python2-pysqlite)
|
||||||
|
@ -1460,7 +1460,7 @@ standards of the IceCat project.")
|
||||||
("clang" ,clang)
|
("clang" ,clang)
|
||||||
("llvm" ,llvm)
|
("llvm" ,llvm)
|
||||||
("nasm" ,nasm)
|
("nasm" ,nasm)
|
||||||
("node" ,node-10.22)
|
("node" ,node)
|
||||||
("perl" ,perl)
|
("perl" ,perl)
|
||||||
("pkg-config" ,pkg-config)
|
("pkg-config" ,pkg-config)
|
||||||
("python" ,python)
|
("python" ,python)
|
||||||
|
|
|
@ -48,14 +48,14 @@
|
||||||
(define-public node
|
(define-public node
|
||||||
(package
|
(package
|
||||||
(name "node")
|
(name "node")
|
||||||
(version "10.20.0")
|
(version "10.22.1")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "https://nodejs.org/dist/v" version
|
(uri (string-append "https://nodejs.org/dist/v" version
|
||||||
"/node-v" version ".tar.xz"))
|
"/node-v" version ".tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0cvjwnl0wkcsyw3kannbdv01s235wrnp11n2s6swzjx95gpichfi"))
|
"0pr569qiabr4m7k38s7rwi3iyzrc5jmx19z2z0k7n4xfvhjlfzzl"))
|
||||||
(modules '((guix build utils)))
|
(modules '((guix build utils)))
|
||||||
(snippet
|
(snippet
|
||||||
`(begin
|
`(begin
|
||||||
|
@ -201,24 +201,6 @@ devices.")
|
||||||
(properties '((max-silent-time . 7200) ;2h, needed on ARM
|
(properties '((max-silent-time . 7200) ;2h, needed on ARM
|
||||||
(timeout . 21600))))) ;6h
|
(timeout . 21600))))) ;6h
|
||||||
|
|
||||||
;; TODO: Make this the default node on core-updates. This cannot be done on
|
|
||||||
;; master since this version of node requires a newer nghttp2 library at link
|
|
||||||
;; time.
|
|
||||||
(define-public node-10.22
|
|
||||||
(package
|
|
||||||
(inherit node)
|
|
||||||
(version "10.22.1")
|
|
||||||
(source (origin
|
|
||||||
(inherit (package-source node))
|
|
||||||
(uri (string-append "https://nodejs.org/dist/v" version
|
|
||||||
"/node-v" version ".tar.xz"))
|
|
||||||
(sha256
|
|
||||||
(base32
|
|
||||||
"0pr569qiabr4m7k38s7rwi3iyzrc5jmx19z2z0k7n4xfvhjlfzzl"))))
|
|
||||||
(inputs
|
|
||||||
(alist-replace "nghttp2" (list nghttp2-1.41 "lib")
|
|
||||||
(package-inputs node)))))
|
|
||||||
|
|
||||||
(define-public libnode
|
(define-public libnode
|
||||||
(package
|
(package
|
||||||
(inherit node)
|
(inherit node)
|
||||||
|
|
Reference in New Issue