[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/13: gnu: Add libuv-for-node
From: |
guix-commits |
Subject: |
02/13: gnu: Add libuv-for-node |
Date: |
Fri, 2 Apr 2021 12:06:35 -0400 (EDT) |
jlicht pushed a commit to branch master
in repository guix.
commit c39092c7b8cb6ba39efedae78a8356e2e4ad76ee
Author: Jelle Licht <jlicht@fsfe.org>
AuthorDate: Tue Mar 30 01:27:32 2021 -0400
gnu: Add libuv-for-node
* 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 7109d9a..0e68357 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")
- branch master updated (532c0e7 -> f6c43c9), guix-commits, 2021/04/02
- 01/13: build-system: Rewrite node build system., guix-commits, 2021/04/02
- 02/13: gnu: Add libuv-for-node,
guix-commits <=
- 04/13: gnu: Add node-bootstrap., guix-commits, 2021/04/02
- 13/13: gnu: Add node-lts., guix-commits, 2021/04/02
- 05/13: gnu: Add node-semver-bootstrap., guix-commits, 2021/04/02
- 12/13: gnu: Add llhttp-bootstrap., guix-commits, 2021/04/02
- 11/13: gnu: Add node-llparse-bootstrap., guix-commits, 2021/04/02
- 09/13: gnu: Add node-llparse-builder-bootstrap., guix-commits, 2021/04/02
- 10/13: gnu: Add node-llparse-frontend-bootstrap., guix-commits, 2021/04/02
- 08/13: gnu: Add node-debug-bootstrap., guix-commits, 2021/04/02
- 07/13: gnu: Add node-binary-search-bootstrap., guix-commits, 2021/04/02
- 03/13: gnu: node: Use license prefix., guix-commits, 2021/04/02