summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--guix/build/node-build-system.scm8
1 files changed, 6 insertions, 2 deletions
diff --git a/guix/build/node-build-system.scm b/guix/build/node-build-system.scm
index ab50571857..4003cbea41 100644
--- a/guix/build/node-build-system.scm
+++ b/guix/build/node-build-system.scm
@@ -256,9 +256,13 @@ only after the 'patch-dependencies' phase."
(delete-file pth)))
lockfiles))
-(define* (configure #:key outputs inputs #:allow-other-keys)
+(define* (configure #:key inputs #:allow-other-keys)
(let ((npm (string-append (assoc-ref inputs "node") "/bin/npm")))
- (invoke npm "--offline" "--ignore-scripts" "--install-links" "install")))
+ (invoke npm "--offline"
+ "--ignore-scripts"
+ "--install-links"
+ "--no-audit"
+ "install")))
(define* (build #:key inputs #:allow-other-keys)
(let* ((package-meta (call-with-input-file "package.json" json->scm))