summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaxim Cournoyer <maxim@guixotic.coop>2026-08-18 15:11:24 +0900
committerMaxim Cournoyer <maxim@guixotic.coop>2026-08-27 10:59:22 +0900
commit83b2062744fab7cf80344d3164eb13df18b80707 (patch)
tree265ab6ff1fd85cdee8dc1ff5a376b1a044d1a8e2
parentae77f49d601c016a564a6af465aba81a5366eeae (diff)
build/tree-sitter: Fix usage of `with-atomic-json-file-replacement'.javascript-team
This is a follow-up to commits 1562ce4ee16828faa3ed1ead2a1a505680fe7902 and 14b2f726d74668700167bfdad3a0d064e3f212be. * guix/build/tree-sitter-build-system.scm (patch-dependencies): Call the modern with-atomic-json-file-replacement* variant.
-rw-r--r--guix/build/tree-sitter-build-system.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/build/tree-sitter-build-system.scm b/guix/build/tree-sitter-build-system.scm
index f19fc5f43cb..81ff741f96c 100644
--- a/guix/build/tree-sitter-build-system.scm
+++ b/guix/build/tree-sitter-build-system.scm
@@ -49,7 +49,7 @@
49 "Rewrite dependencies in 'package.json'. We remove all runtime dependencies 49 "Rewrite dependencies in 'package.json'. We remove all runtime dependencies
50and replace development dependencies with tree-sitter grammar node modules." 50and replace development dependencies with tree-sitter grammar node modules."
51 51
52 (with-atomic-json-file-replacement "package.json" 52 (with-atomic-json-file-replacement* "package.json"
53 (lambda (pkg-meta-alist) 53 (lambda (pkg-meta-alist)
54 (map (match-lambda 54 (map (match-lambda
55 (("dependencies" dependencies ...) 55 (("dependencies" dependencies ...)