gnu: node-debug-bootstrap: Use 'delete-dependencies'.

gnu/packages/node.scm (node-debug-bootstrap)[arguments]: Use
'delete-dependencies'.  Stop deleting the 'configure' phase.

Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
This commit is contained in:
Philip McGrath 2022-01-08 03:41:57 -05:00 committed by Liliana Marie Prikler
parent fcec019560
commit ff90784cef
No known key found for this signature in database
GPG key ID: 442A84B8C70E2F87

View file

@ -440,7 +440,19 @@ (define-public node-debug-bootstrap
#:tests? #f
#:phases
(modify-phases %standard-phases
(delete 'configure))))
(add-after 'patch-dependencies 'delete-dependencies
(lambda args
(delete-dependencies `("brfs"
"browserify"
"coveralls"
"istanbul"
"karma"
"karma-browserify"
"karma-chrome-launcher"
"karma-mocha"
"mocha"
"mocha-lcov-reporter"
"xo")))))))
(inputs (list node-ms-bootstrap))
(home-page "https://github.com/visionmedia/debug#readme")
(properties '((hidden? . #t)))