[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#47282] [PATCH v2 02/13] gnu: Add libuv-for-node
From: |
Timothy Sample |
Subject: |
[bug#47282] [PATCH v2 02/13] gnu: Add libuv-for-node |
Date: |
Tue, 30 Mar 2021 01:27:32 -0400 |
From: Jelle Licht <jlicht@fsfe.org>
* gnu/packages/libevent.scm (libuv-for-node): New variable.
---
gnu/packages/libevent.scm | 16 ++++++++++++++++
1 file changed, 16 insertions(+)
diff --git a/gnu/packages/libevent.scm b/gnu/packages/libevent.scm
index 7109d9a88d..0e683570d3 100644
--- a/gnu/packages/libevent.scm
+++ b/gnu/packages/libevent.scm
@@ -134,6 +134,22 @@ resolution, asynchronous file system operations, and
threading primitives.")
;; details. Documentation is CC-BY 4.0 as of 1.12.0; see 'LICENSE-docs'.
(license (list expat cc-by4.0))))
+(define-public libuv-for-node
+ ;; When upgrading Node, also upgrade this. Get the version from
+ ;; https://github.com/nodejs/node/blob/master/deps/uv/include/uv/version.h
+ (package
+ (inherit libuv)
+ (name "libuv")
+ (version "1.40.0")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append "https://dist.libuv.org/dist/v" version
+ "/libuv-v" version ".tar.gz"))
+ (sha256
+ (base32
+ "1551k3ab27vbg9517l9b4iqbramwxdkwgpf53knas05cbfwhvab1"))))
+ (properties '((hidden? . #t)))))
+
(define-public perl-anyevent
(package
(name "perl-anyevent")
--
2.31.0
- [bug#47282] [PATCH 08/13] gnu: node: Add node-debug-bootstrap., (continued)
- [bug#47282] [PATCH 00/13] node going forward, Lars-Dominik Braun, 2021/03/23
- [bug#47282] [PATCH 00/13] node going forward, Timothy Sample, 2021/03/30
- [bug#47282] [PATCH v2 01/13] build-system: Rewrite node build system., Timothy Sample, 2021/03/30
- [bug#47282] [PATCH v2 04/13] gnu: Add node-bootstrap., Timothy Sample, 2021/03/30
- [bug#47282] [PATCH v2 05/13] gnu: Add node-semver-bootstrap., Timothy Sample, 2021/03/30
- [bug#47282] [PATCH v2 02/13] gnu: Add libuv-for-node,
Timothy Sample <=
- [bug#47282] [PATCH v2 03/13] gnu: node: Use license prefix., Timothy Sample, 2021/03/30
- [bug#47282] [PATCH v2 10/13] gnu: Add node-llparse-frontend-bootstrap., Timothy Sample, 2021/03/30
- [bug#47282] [PATCH v2 09/13] gnu: Add node-llparse-builder-bootstrap., Timothy Sample, 2021/03/30
- [bug#47282] [PATCH v2 08/13] gnu: Add node-debug-bootstrap., Timothy Sample, 2021/03/30
- [bug#47282] [PATCH v2 06/13] gnu: Add node-ms-bootstrap., Timothy Sample, 2021/03/30
- [bug#47282] [PATCH v2 07/13] gnu: Add node-binary-search-bootstrap., Timothy Sample, 2021/03/30
- [bug#47282] [PATCH v2 11/13] gnu: Add node-llparse-bootstrap., Timothy Sample, 2021/03/30
- [bug#47282] [PATCH v2 12/13] gnu: Add llhttp-bootstrap., Timothy Sample, 2021/03/30
- [bug#47282] [PATCH v2 13/13] gnu: Add node-lts., Timothy Sample, 2021/03/30