gnu: node: Add node-debug-bootstrap.

* gnu/packages/node.scm (node-debug-bootstrap): New package.
This commit is contained in:
Jelle Licht 2020-10-23 22:54:21 +02:00
parent 6fc283a05a
commit 7541e2222a
No known key found for this signature in database
GPG key ID: DA4597F947B41025

View file

@ -321,6 +321,39 @@ (define-public node-binary-search-bootstrap
"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)