bug#74900: [PATCH v2 0/6] build-system/node: Replace (guix build json) by (json).
Commit Message
Hey folks,
Nicolas Graves <ngraves@ngraves.fr> writes:
> This is a rework of Daniel's patch series.
>
> I have reworded commit messages to respect (info) Standards ; did some
> reindenting ; added the guile-json extension as suggested by Ludo ;
> added a patch to use the test-target argument ; and did the same for
> tree-sitter modules (which was necessary).
>
> Daniel Khodabakhsh (2):
> build-system/node: Switch to (json).
> build-system/node: New API for modifying json.
>
> Nicolas Graves (4):
> build-system/node: Add guile-json extension.
> build-system/node: Use test-target argument.
> build-system/tree-sitter: Switch to (json).
> build-system/tree-sitter: Add guile-json extension.
Applied + pushed to a new javascript-team branch with the following
small changes to get it to compile cleanly:
@@ -96,6 +96,7 @@ (define* (node-build name inputs
(outputs '("out"))
(search-paths '())
(system (%current-system))
+ (guile #f)
(guile-json (default-guile-json))
(imported-modules %node-build-system-modules)
(modules '((guix build node-build-system)
@@ -221,7 +221,7 @@ (define* (replace-fields fields #:key (strict? #t))
#:strict? strict?))
(define (delete-dev-dependencies)
- (delete-fields (list "devDependencies") #:strict #f))
+ (delete-fields (list "devDependencies") #:strict? #f))
;;;
;;; Phases.
@@ -104,6 +104,7 @@ (define* (tree-sitter-build name inputs
(outputs '("out" "js"))
(search-paths '())
(system (%current-system))
+ (guile #f)
(guile-json (default-guile-json))
(imported-modules %tree-sitter-build-system-modules)
(modules '((guix build utils)