[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#47282] [PATCH 08/13] gnu: node: Add node-debug-bootstrap.
From: |
Jelle Licht |
Subject: |
[bug#47282] [PATCH 08/13] gnu: node: Add node-debug-bootstrap. |
Date: |
Sat, 20 Mar 2021 15:59:20 +0100 |
* 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 b7937b29f4..58e3fd1acc 100644
--- a/gnu/packages/node.scm
+++ b/gnu/packages/node.scm
@@ -313,6 +313,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
(name "libnode")
--
2.31.0
- [bug#47282] [PATCH 01/13] build-system: Rewrite node build system., (continued)
- [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, 2021/03/20
- [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 <=
- [bug#47282] [PATCH 06/13] gnu: node: Add node-ms-bootstrap., Jelle Licht, 2021/03/20
- [bug#47282] [PATCH 09/13] gnu: node: Add node-llparse-builder-bootstrap., Jelle Licht, 2021/03/20
- [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