diff options
-rw-r--r-- | gnu/packages/node.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/node.scm b/gnu/packages/node.scm index 495ae95dc3..2594b6d518 100644 --- a/gnu/packages/node.scm +++ b/gnu/packages/node.scm @@ -411,7 +411,9 @@ formats to milliseconds.") #:tests? #f #: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") (properties '((hidden? . #t))) (synopsis "Tiny binary search function with comparators") |