[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
08/13: gnu: Add node-debug-bootstrap.
From: |
guix-commits |
Subject: |
08/13: gnu: Add node-debug-bootstrap. |
Date: |
Fri, 2 Apr 2021 12:06:37 -0400 (EDT) |
jlicht pushed a commit to branch master
in repository guix.
commit 2780cea3f8b90d7feb3e21b92b9637abdaa58a76
Author: Jelle Licht <jlicht@fsfe.org>
AuthorDate: Tue Mar 30 01:27:38 2021 -0400
gnu: Add node-debug-bootstrap.
* gnu/packages/node.scm (node-debug-bootstrap): New variable.
---
gnu/packages/node.scm | 30 ++++++++++++++++++++++++++++++
1 file changed, 30 insertions(+)
diff --git a/gnu/packages/node.scm b/gnu/packages/node.scm
index 21d6052..6c4c022 100644
--- a/gnu/packages/node.scm
+++ b/gnu/packages/node.scm
@@ -303,6 +303,36 @@ formats to milliseconds.")
(description "This package is a binary search function for 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))))
+ (inputs `(("node-ms" ,node-ms-bootstrap)))
+ (home-page "https://github.com/visionmedia/debug#readme")
+ (properties '((hidden? . #t)))
+ (synopsis "Small debugging utility")
+ (description "This package contains a tiny JavaScript debugging
+utility modelled after Node.js core's debugging technique. It works in
+Node.js and web browsers.")
+ (license license:expat)))
+
(define-public libnode
(package/inherit node
(name "libnode")
- 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, 2021/04/02
- 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 <=
- 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
- 06/13: gnu: Add node-ms-bootstrap., guix-commits, 2021/04/02