[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#59188] [PATCH v7 01/20] build-system: node: Use `--install-links' w
From: |
jlicht |
Subject: |
[bug#59188] [PATCH v7 01/20] build-system: node: Use `--install-links' with `npm install'. |
Date: |
Mon, 17 Apr 2023 16:51:03 +0200 |
From: Jelle Licht <jlicht@fsfe.org>
Later versions of npm need to explicitly install a copy of local dependencies,
instead of only a symlink.
* guix/build/node-build-system.scm (configure): Add `--install-links' to npm
install invocation.
(install): Ditto.
---
(no changes since v1)
guix/build/node-build-system.scm | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/guix/build/node-build-system.scm b/guix/build/node-build-system.scm
index bee3792e93..93f7efbb2b 100644
--- a/guix/build/node-build-system.scm
+++ b/guix/build/node-build-system.scm
@@ -223,7 +223,7 @@ (define* (delete-lockfiles #:key inputs #:allow-other-keys)
(define* (configure #:key outputs inputs #:allow-other-keys)
(let ((npm (string-append (assoc-ref inputs "node") "/bin/npm")))
- (invoke npm "--offline" "--ignore-scripts" "install")
+ (invoke npm "--offline" "--ignore-scripts" "--install-links" "install")
#t))
(define* (build #:key inputs #:allow-other-keys)
@@ -262,6 +262,7 @@ (define* (install #:key outputs inputs #:allow-other-keys)
"--offline"
"--loglevel" "info"
"--production"
+ "--install-links"
"install" "../package.tgz")
#t))
--
2.39.2
- [bug#59188] [PATCH v7 00/20] Updating node-lts to 18.X, jlicht, 2023/04/17
- [bug#59188] [PATCH v7 02/20] gnu: node-acorn: Disable tests., jlicht, 2023/04/17
- [bug#59188] [PATCH v7 01/20] build-system: node: Use `--install-links' with `npm install'.,
jlicht <=
- [bug#59188] [PATCH v7 03/20] gnu: node-acorn: Remove lifecycle script., jlicht, 2023/04/17
- [bug#59188] [PATCH v7 13/20] gnu: node-uglify-js: Update to 3.14.2., jlicht, 2023/04/17
- [bug#59188] [PATCH v7 04/20] gnu: node-acorn: Fix broken transpilation., jlicht, 2023/04/17
- [bug#59188] [PATCH v7 06/20] gnu: node-crx3: Ignore development dependencies., jlicht, 2023/04/17
- [bug#59188] [PATCH v7 11/20] gnu: node-ieee754: Ignore development dependencies., jlicht, 2023/04/17
- [bug#59188] [PATCH v7 08/20] gnu: node-pbf: Ignore development dependencies., jlicht, 2023/04/17
- [bug#59188] [PATCH v7 09/20] gnu: node-protocol-buffers-schema: Ignore development dependencies., jlicht, 2023/04/17
- [bug#59188] [PATCH v7 10/20] gnu: node-resolve-protobuf-schema: Ignore development dependencies., jlicht, 2023/04/17
- [bug#59188] [PATCH v7 17/20] gnu: libuv-for-node: Update to 1.44.2., jlicht, 2023/04/17
- [bug#59188] [PATCH v7 12/20] gnu: node-yazl: Ignore development dependencies., jlicht, 2023/04/17