mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-14 15:10:16 -05:00
gnu: node-binary-search-bootstrap: Use 'delete-dependencies'.
gnu/packages/node.scm (node-binary-search-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
11f842fafe
commit
fcec019560
1 changed files with 3 additions and 1 deletions
|
@ -411,7 +411,9 @@ (define-public node-binary-search-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 `("chai" "mocha")))))))
|
||||||
(home-page "https://github.com/darkskyapp/binary-search#readme")
|
(home-page "https://github.com/darkskyapp/binary-search#readme")
|
||||||
(properties '((hidden? . #t)))
|
(properties '((hidden? . #t)))
|
||||||
(synopsis "Tiny binary search function with comparators")
|
(synopsis "Tiny binary search function with comparators")
|
||||||
|
|
Loading…
Reference in a new issue