mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-27 04:59:27 -05:00
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:
parent
fcec019560
commit
ff90784cef
1 changed files with 13 additions and 1 deletions
|
@ -440,7 +440,19 @@ (define-public node-debug-bootstrap
|
||||||
#:tests? #f
|
#:tests? #f
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-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))
|
(inputs (list node-ms-bootstrap))
|
||||||
(home-page "https://github.com/visionmedia/debug#readme")
|
(home-page "https://github.com/visionmedia/debug#readme")
|
||||||
(properties '((hidden? . #t)))
|
(properties '((hidden? . #t)))
|
||||||
|
|
Loading…
Reference in a new issue