guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

03/03: gnu: node: Update to 10.22.0.


From: guix-commits
Subject: 03/03: gnu: node: Update to 10.22.0.
Date: Sun, 20 Sep 2020 17:57:58 -0400 (EDT)

civodul pushed a commit to branch core-updates
in repository guix.

commit dd36f508d57edc09b71f2316969dc14fee7df2c2
Author: Ludovic Courtès <ludo@gnu.org>
AuthorDate: Sun Sep 20 23:51:25 2020 +0200

    gnu: node: Update to 10.22.0.
    
    * gnu/packages/node.scm (node): Update to 10.22.0.
    (node-10.22): Remove.  It was referring to 'nghttp2-1.41', which is
    unbound.
---
 gnu/packages/node.scm | 22 ++--------------------
 1 file changed, 2 insertions(+), 20 deletions(-)

diff --git a/gnu/packages/node.scm b/gnu/packages/node.scm
index f0b989b..cfcd08e 100644
--- a/gnu/packages/node.scm
+++ b/gnu/packages/node.scm
@@ -48,14 +48,14 @@
 (define-public node
   (package
     (name "node")
-    (version "10.20.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
-                "0cvjwnl0wkcsyw3kannbdv01s235wrnp11n2s6swzjx95gpichfi"))
+                "1nz18fa550li10r0kzsm28c2rvvq61nq8bqdygip0rmvbi2paxg0"))
               (modules '((guix build utils)))
               (snippet
                `(begin
@@ -201,24 +201,6 @@ devices.")
     (properties '((max-silent-time . 7200)     ;2h, needed on ARM
                   (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.0")
-    (source (origin
-              (inherit (package-source node))
-              (uri (string-append "https://nodejs.org/dist/v"; version
-                                  "/node-v" version ".tar.xz"))
-              (sha256
-               (base32
-                "1nz18fa550li10r0kzsm28c2rvvq61nq8bqdygip0rmvbi2paxg0"))))
-    (inputs
-     (alist-replace "nghttp2" (list nghttp2-1.41 "lib")
-                    (package-inputs node)))))
-
 (define-public libnode
   (package
     (inherit node)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]