mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-18 21:46:35 +01:00
gnu: node: Add node-debug-bootstrap.
* gnu/packages/node.scm (node-debug-bootstrap): New package.
This commit is contained in:
parent
6fc283a05a
commit
7541e2222a
1 changed files with 33 additions and 0 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue