[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#51838] [PATCH v3 19/43] guix: node-build-system: Add implicit libuv
From: |
Philip McGrath |
Subject: |
[bug#51838] [PATCH v3 19/43] guix: node-build-system: Add implicit libuv input. |
Date: |
Wed, 8 Dec 2021 15:28:14 -0500 |
* guix/build-system/node.scm (lower): Add the version of libuv
used as an input to the #:node package as an additional implicit
input, so that packages needing libuv always get the correct version.
---
guix/build-system/node.scm | 9 ++++++++-
1 file changed, 8 insertions(+), 1 deletion(-)
diff --git a/guix/build-system/node.scm b/guix/build-system/node.scm
index 4f437f9c0d..179da65ee8 100644
--- a/guix/build-system/node.scm
+++ b/guix/build-system/node.scm
@@ -1,6 +1,8 @@
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2016 Jelle Licht <jlicht@fsfe.org>
;;; Copyright © 2019 Timothy Sample <samplet@ngyro.com>
+;;; Copyright © 2021 Pierre Langlois <pierre.langlois@gmx.com>
+;;; Copyright © 2021 Philip McGrath <philip@philipmcgrath.com>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -59,10 +61,15 @@ (define private-keywords
`(("source" ,source))
'())
,@inputs
-
;; Keep the standard inputs of 'gnu-build-system'.
,@(standard-packages)))
(build-inputs `(("node" ,node)
+ ;; Many packages with native addons need
+ ;; libuv headers. The libuv version must
+ ;; be exactly the same as for the node
+ ;; package we are adding implicitly,
+ ;; so we take care of adding libuv, too.
+ ("libuv" ,@(assoc-ref (package-inputs node) "libuv"))
,@native-inputs))
(outputs outputs)
(build node-build)
--
2.32.0
- [bug#51838] [PATCH v3 42/43] gnu: Add node-serialport-stream., (continued)
- [bug#51838] [PATCH v3 42/43] gnu: Add node-serialport-stream., Philip McGrath, 2021/12/08
- [bug#51838] [PATCH v3 37/43] gnu: Add node-serialport-parser-regex., Philip McGrath, 2021/12/08
- [bug#51838] [PATCH v3 26/43] gnu: Add node-nan., Philip McGrath, 2021/12/08
- [bug#51838] [PATCH v3 26/43] gnu: Add node-nan., Pierre Langlois, 2021/12/12
- [bug#51838] [PATCH v3 26/43] gnu: Add node-nan., Philip McGrath, 2021/12/12
- [bug#51838] [PATCH v3 15/43] gnu: node-wrappy: Use #:absent-dependencies., Philip McGrath, 2021/12/08
- [bug#51838] [PATCH v3 29/43] gnu: Add node-sqlite3., Philip McGrath, 2021/12/08
- [bug#51838] [PATCH v3 29/43] gnu: Add node-sqlite3., Pierre Langlois, 2021/12/12
- [bug#51838] [PATCH v3 29/43] gnu: Add node-sqlite3., Philip McGrath, 2021/12/12
- [bug#51838] [PATCH v3 18/43] gnu: node-irc: Use #:absent-dependencies., Philip McGrath, 2021/12/08
- [bug#51838] [PATCH v3 19/43] guix: node-build-system: Add implicit libuv input.,
Philip McGrath <=
- [bug#51838] [PATCH v3 23/43] gnu: Add node-safe-buffer., Philip McGrath, 2021/12/08
- [bug#51838] [PATCH v3 38/43] gnu: Add node-serialport-parser-ready., Philip McGrath, 2021/12/08
- [bug#51838] [PATCH v3 27/43] gnu: Add node-openzwave-shared., Philip McGrath, 2021/12/08
- [bug#51838] [PATCH v3 33/43] gnu: Add node-serialport-binding-abstract., Philip McGrath, 2021/12/08
- [bug#51838] [PATCH v3 41/43] gnu: Add node-serialport-parser-byte-length., Philip McGrath, 2021/12/08
- [bug#51838] [PATCH v3 43/43] gnu: Add node-serialport., Philip McGrath, 2021/12/08
- [bug#51838] [PATCH v3 00/43] guix: node-build-system: Support compiling add-ons with node-gyp., Pierre Langlois, 2021/12/12
- [bug#51838] [PATCH v3 00/43] guix: node-build-system: Support compiling add-ons with node-gyp., Pierre Langlois, 2021/12/12
- [bug#51838] [PATCH v3 00/43] guix: node-build-system: Support compiling add-ons with node-gyp., Philip McGrath, 2021/12/12
[bug#51838] [PATCH 00/11] guix: node-build-system: Support compiling add-ons with node-gyp., Philip McGrath, 2021/12/02