[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#47282] [PATCH 02/13] gnu: Add libuv-node
From: |
Jelle Licht |
Subject: |
[bug#47282] [PATCH 02/13] gnu: Add libuv-node |
Date: |
Sat, 20 Mar 2021 15:59:14 +0100 |
* gnu/packages/libevent.scm (libuv-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..699d0705dd 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-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-node")
+ (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"))))))
+
+
(define-public perl-anyevent
(package
(name "perl-anyevent")
--
2.31.0
- [bug#47282] [PATCH 00/13] node going forward, Jelle Licht, 2021/03/20
- [bug#47282] [PATCH 01/13] build-system: Rewrite node build system., Jelle Licht, 2021/03/20
- [bug#47282] [PATCH 02/13] gnu: Add libuv-node,
Jelle Licht <=
- [bug#47282] [PATCH 07/13] gnu: node: Add node-binary-search-bootstrap., Jelle Licht, 2021/03/20
- [bug#47282] [PATCH 05/13] gnu: node: Add node-semver-bootstrap., Jelle Licht, 2021/03/20
- [bug#47282] [PATCH 11/13] gnu: node: Add node-llparse-bootstrap., Jelle Licht, 2021/03/20
- [bug#47282] [PATCH 04/13] gnu: node: Add node-bootstrap., Jelle Licht, 2021/03/20
- [bug#47282] [PATCH 03/13] gnu: node: Use license prefix., Jelle Licht, 2021/03/20
- [bug#47282] [PATCH 10/13] gnu: node: Add node-llparse-frontend-bootstrap., Jelle Licht, 2021/03/20
- [bug#47282] [PATCH 12/13] gnu: node: Add llhttp-bootstrap., Jelle Licht, 2021/03/20
- [bug#47282] [PATCH 13/13] gnu: node: Add node-lts, Jelle Licht, 2021/03/20
- [bug#47282] [PATCH 08/13] gnu: node: Add node-debug-bootstrap., Jelle Licht, 2021/03/20
- [bug#47282] [PATCH 06/13] gnu: node: Add node-ms-bootstrap., Jelle Licht, 2021/03/20