[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
08/13: gnu: node: Add node-debug-bootstrap.
From: |
guix-commits |
Subject: |
08/13: gnu: node: Add node-debug-bootstrap. |
Date: |
Fri, 23 Oct 2020 18:14:46 -0400 (EDT) |
jlicht pushed a commit to branch wip-node-14
in repository guix.
commit bcae1ba23142e1b7b743289866097a7e79c0b880
Author: Jelle Licht <jlicht@fsfe.org>
AuthorDate: Fri Oct 23 22:54:21 2020 +0200
gnu: node: Add node-debug-bootstrap.
* gnu/packages/node.scm (node-debug-bootstrap): New package.
---
gnu/packages/node.scm | 33 +++++++++++++++++++++++++++++++++
1 file changed, 33 insertions(+)
diff --git a/gnu/packages/node.scm b/gnu/packages/node.scm
index 7594c48..81dd80e 100644
--- a/gnu/packages/node.scm
+++ b/gnu/packages/node.scm
@@ -298,6 +298,39 @@ milliseconds.")
"This package is a binary search function for @code{Node.js}.")
(license license:cc0)))
+(define-public node-debug-bootstrap
+ (package
+ (name "node-debug")
+ (version "4.3.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/visionmedia/debug.git")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "08g52r1d4yqcsfdfb7n5if33d4cghaq75gx5n9hj6m6fd8jfp2pi"))))
+ (build-system node-build-system)
+ (arguments
+ `(#:node ,node-bootstrap
+ #:tests? #f
+ #:phases
+ (modify-phases
+ %standard-phases
+ (delete 'configure)
+ (delete 'build))))
+ (inputs `(("node-ms" ,node-ms-bootstrap)))
+ (home-page
+ "https://github.com/visionmedia/debug#readme")
+ (properties '((hidden? . #t)))
+ (synopsis "Small debugging utility")
+ (description "This packages contains a tiny JavaScript debugging utility
+modelled after @code{Node.js} core's debugging technique. It works in
+@code{Node.js} and web browsers.")
+ (license license:expat)))
+
(define-public libnode
(package
(inherit node)
- branch wip-node-14 created (now 916db33), guix-commits, 2020/10/23
- 01/13: build-system: Rewrite node build system., guix-commits, 2020/10/23
- 02/13: gnu: Add libuv-node, guix-commits, 2020/10/23
- 03/13: gnu: node: Use license prefix., guix-commits, 2020/10/23
- 05/13: gnu: node: Add node-semver-bootstrap., guix-commits, 2020/10/23
- 06/13: gnu: node: Add node-ms-bootstrap., guix-commits, 2020/10/23
- 08/13: gnu: node: Add node-debug-bootstrap.,
guix-commits <=
- 04/13: gnu: node: Add node-bootstrap., guix-commits, 2020/10/23
- 07/13: gnu: node: Add node-binary-search-bootstrap., guix-commits, 2020/10/23
- 12/13: gnu: node: Add llhttp-bootstrap., guix-commits, 2020/10/23
- 11/13: gnu: node: Add node-llparse-bootstrap., guix-commits, 2020/10/23
- 10/13: gnu: node: Add node-llparse-frontend-bootstrap., guix-commits, 2020/10/23
- 09/13: gnu: node: Add node-llparse-builder-bootstrap., guix-commits, 2020/10/23
- 13/13: gnu: node: Add node-14.14, guix-commits, 2020/10/23