guix-commits
[Top][All Lists]
Advanced

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

01/07: gnu: node: Update to 10.22.1.


From: guix-commits
Subject: 01/07: gnu: node: Update to 10.22.1.
Date: Tue, 8 Dec 2020 16:59:22 -0500 (EST)

mbakke pushed a commit to branch ungrafting
in repository guix.

commit 18f10c0b12dd369507fd2821dcf748fc9b13053a
Author: Marius Bakke <marius@gnu.org>
AuthorDate: Tue Dec 8 20:56:39 2020 +0100

    gnu: node: Update to 10.22.1.
    
    This follows up on 3eb34c66b42d1fa520a374e9b35a6ce7bd1e8987 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.
---
 gnu/packages/gnuzilla.scm |  4 ++--
 gnu/packages/node.scm     | 22 ++--------------------
 2 files changed, 4 insertions(+), 22 deletions(-)

diff --git a/gnu/packages/gnuzilla.scm b/gnu/packages/gnuzilla.scm
index afe5768..13bba7b 100644
--- a/gnu/packages/gnuzilla.scm
+++ b/gnu/packages/gnuzilla.scm
@@ -791,7 +791,7 @@ from forcing GEXP-PROMISE."
        ("llvm" ,llvm)
        ("clang" ,clang)
        ("perl" ,perl)
-       ("node" ,node-10.22)
+       ("node" ,node)
        ("python" ,python)
        ("python-2" ,python-2)
        ("python2-pysqlite" ,python2-pysqlite)
@@ -1460,7 +1460,7 @@ standards of the IceCat project.")
        ("clang" ,clang)
        ("llvm" ,llvm)
        ("nasm" ,nasm)
-       ("node" ,node-10.22)
+       ("node" ,node)
        ("perl" ,perl)
        ("pkg-config" ,pkg-config)
        ("python" ,python)
diff --git a/gnu/packages/node.scm b/gnu/packages/node.scm
index f04e39b..66ef4f0 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.1")
     (source (origin
               (method url-fetch)
               (uri (string-append "https://nodejs.org/dist/v"; version
                                   "/node-v" version ".tar.xz"))
               (sha256
                (base32
-                "0cvjwnl0wkcsyw3kannbdv01s235wrnp11n2s6swzjx95gpichfi"))
+                "0pr569qiabr4m7k38s7rwi3iyzrc5jmx19z2z0k7n4xfvhjlfzzl"))
               (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.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
   (package
     (inherit node)



reply via email to

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