Message ID | c67b5023d6e0eb0480e31d09e1f7e8081f368fc4.1675889756.git.jlicht@fsfe.org |
---|---|
State | New |
Headers | show |
Series | Updating node-lts to 18.X | expand |
diff --git a/gnu/packages/node-xyz.scm b/gnu/packages/node-xyz.scm index c9a853616e..d527e3240a 100644 --- a/gnu/packages/node-xyz.scm +++ b/gnu/packages/node-xyz.scm @@ -123,10 +123,9 @@ (define-public node-buffer-crc32 (arguments '(#:tests? #f #:phases (modify-phases %standard-phases - (replace 'configure + (add-after 'patch-dependencies 'delete-dependencies (lambda _ - (invoke "npm" "--offline" "--ignore-scripts" "install" - "--production")))))) + (delete-dependencies '("tap"))))))) (home-page "https://github.com/brianloveswords/buffer-crc32") (synopsis "CRC32 implementation in Javascript") (description
From: Jelle Licht <jlicht@fsfe.org> * gnu/packages/node-xyz.scm (node-acorn)[arguments]<phases>: Explicitly patch out development dependencies. Re-enable configure phase. --- gnu/packages/node-xyz.scm | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-)