[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/14: gnu: Add libuv-node
From: |
guix-commits |
Subject: |
02/14: gnu: Add libuv-node |
Date: |
Fri, 4 Dec 2020 07:02:28 -0500 (EST) |
jlicht pushed a commit to branch wip-node-14
in repository guix.
commit 9498ef001fcc3029c63f302a177b723dbc7b523f
Author: Jelle Licht <jlicht@fsfe.org>
AuthorDate: Fri Oct 23 22:20:30 2020 +0200
gnu: Add libuv-node
* 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 dab574a..dfbf706 100644
--- a/gnu/packages/libevent.scm
+++ b/gnu/packages/libevent.scm
@@ -133,6 +133,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")
- branch wip-node-14 created (now 9482250), guix-commits, 2020/12/04
- 05/14: gnu: node: Add node-semver-bootstrap., guix-commits, 2020/12/04
- 13/14: gnu: node: Add node-lts, guix-commits, 2020/12/04
- 01/14: build-system: Rewrite node build system., guix-commits, 2020/12/04
- 06/14: gnu: node: Add node-ms-bootstrap., guix-commits, 2020/12/04
- 07/14: gnu: node: Add node-binary-search-bootstrap., guix-commits, 2020/12/04
- 03/14: gnu: node: Use license prefix., guix-commits, 2020/12/04
- 02/14: gnu: Add libuv-node,
guix-commits <=
- 04/14: gnu: node: Add node-bootstrap., guix-commits, 2020/12/04
- 08/14: gnu: node: Add node-debug-bootstrap., guix-commits, 2020/12/04
- 11/14: gnu: node: Add node-llparse-bootstrap., guix-commits, 2020/12/04
- 09/14: gnu: node: Add node-llparse-builder-bootstrap., guix-commits, 2020/12/04
- 12/14: gnu: node: Add llhttp-bootstrap., guix-commits, 2020/12/04
- 10/14: gnu: node: Add node-llparse-frontend-bootstrap., guix-commits, 2020/12/04
- 14/14: import: Add binary npm importer., guix-commits, 2020/12/04