GNU bug report logs -
#51838
[PATCH 00/11] guix: node-build-system: Support compiling add-ons with node-gyp.
Previous Next
Reported by: Philip McGrath <philip <at> philipmcgrath.com>
Date: Sun, 14 Nov 2021 12:43:01 UTC
Severity: normal
Tags: patch
Done: Liliana Marie Prikler <liliana.prikler <at> gmail.com>
Bug is archived. No further changes may be made.
Full log
View this message in rfc822 format
Am Freitag, den 19.11.2021, 23:33 -0500 schrieb Philip McGrath:
> gnu/packages/node.scm (node-llparse-builder-bootstrap)[arguments]:
> Add `#:absent-dependencies`. Stop deleting the `'configure` phase.
> Add a new phase `#:delete-package-lock` to remove the
> problematic "package-lock.json".
> ---
> gnu/packages/node.scm | 14 +++++++++++++-
> 1 file changed, 13 insertions(+), 1 deletion(-)
>
> diff --git a/gnu/packages/node.scm b/gnu/packages/node.scm
> index 98a51276e7..9d4903a8ca 100644
> --- a/gnu/packages/node.scm
> +++ b/gnu/packages/node.scm
> @@ -479,9 +479,21 @@ (define-public node-llparse-builder-bootstrap
> (arguments
> `(#:node ,node-bootstrap
> #:tests? #f
> + #:absent-dependencies
> + `("@types/mocha"
> + "@types/node"
> + "mocha"
> + "ts-node"
> + "tslint"
> + "typescript")
> #:phases
> (modify-phases %standard-phases
> - (delete 'configure)
> + (add-before 'configure 'remove-package-lock
> + ;; Having package-lock.json seems to cause npm
> + ;; to look for things on the internet in the configure
> phase,
> + ;; even if we have them properly installed.
> + (lambda args
> + (delete-file-recursively "package-lock.json")))
I think a simple delete-file ought to work. This should also be done
by configure or similar, compare cargo-build-system.
This bug report was last modified 3 years and 195 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.