summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2026-07-13 09:22:24 +0200
committerMaxim Cournoyer <maxim@guixotic.coop>2026-08-27 10:59:20 +0900
commit163a0dfb192dab65a73768b00f6b7a4a31ddab18 (patch)
tree8abf11cedd7f027b8510639806ab521c5ce12abc
parent6678927816bf127bc192f0c3ca69f6fe1fab6222 (diff)
gnu: Remove node-debug-bootstrap.
* gnu/packages/node.scm (node-debug-bootstrap): Delete variable. Change-Id: Ib82e3d2f4bf91100383ff31a40f79a8f09b5bcd7 Signed-off-by: Jelle Licht <jlicht@fsfe.org>
-rw-r--r--gnu/packages/node.scm48
1 files changed, 0 insertions, 48 deletions
diff --git a/gnu/packages/node.scm b/gnu/packages/node.scm
index 79b1fdbca38..14201c1816f 100644
--- a/gnu/packages/node.scm
+++ b/gnu/packages/node.scm
@@ -461,54 +461,6 @@ devices.")
461formats to milliseconds.") 461formats to milliseconds.")
462 (license license:expat))) 462 (license license:expat)))
463 463
464(define-public node-debug-bootstrap
465 (package
466 (name "node-debug-bootstrap")
467 (version "4.3.0")
468 (source
469 (origin
470 (method git-fetch)
471 (uri (git-reference
472 (url "https://github.com/visionmedia/debug.git")
473 (commit version)))
474 (file-name (git-file-name name version))
475 (sha256
476 (base32 "08g52r1d4yqcsfdfb7n5if33d4cghaq75gx5n9hj6m6fd8jfp2pi"))))
477 (build-system gnu-build-system)
478 (arguments
479 (list
480 #:tests? #f
481 #:phases
482 #~(modify-phases #$bootstrap-node-phases
483 (add-before 'configure 'patch-dependencies
484 (lambda* (#:key inputs #:allow-other-keys)
485 #$(delete-dependencies* (list "brfs"
486 "browserify"
487 "coveralls"
488 "istanbul"
489 "karma"
490 "karma-browserify"
491 "karma-chrome-launcher"
492 "karma-mocha"
493 "mocha"
494 "mocha-lcov-reporter"
495 "xo"))
496 ;; Resolve modules manually.
497 (let ((module (search-input-directory inputs
498 "lib/node_modules/ms")))
499 (substitute* "package.json"
500 (("\"ms\": \".*")
501 (format #f "\"ms\": \"file://~a\"" module)))))))))
502 (native-inputs (list node-bootstrap))
503 (inputs (list node-ms-bootstrap))
504 (home-page "https://github.com/visionmedia/debug#readme")
505 (properties '((hidden? . #t)))
506 (synopsis "Small debugging utility")
507 (description "This package contains a tiny JavaScript debugging
508utility modelled after Node.js core's debugging technique. It works in
509Node.js and web browsers.")
510 (license license:expat)))
511
512(define-public node-llparse-builder-bootstrap 464(define-public node-llparse-builder-bootstrap
513 ;; The binary-search package is vendored in 1351b75. It's not unvendored 465 ;; The binary-search package is vendored in 1351b75. It's not unvendored
514 ;; here because it's small, and as a bootstrap package doesn't bring 466 ;; here because it's small, and as a bootstrap package doesn't bring