diff options
author | Jelle Licht <jlicht@fsfe.org> | 2025-05-30 16:21:34 +0200 |
---|---|---|
committer | Jelle Licht <jlicht@fsfe.org> | 2025-10-13 09:55:13 +0200 |
commit | b964f2cc599cde08e79f8fb942fa75d1c3ca595b (patch) | |
tree | 176a012a428d8826e97eacb110bdd1aa96d01cdb | |
parent | 504dda26bd8e6b18f0f1802a457760d1511bbd92 (diff) |
gnu: node-llparse-builder-bootstrap: Update to 1.5.2.
* gnu/packages/node.scm (node-llparse-builder-bootstrap): Update to 1.5.2.
Change-Id: I886eceb7f284fe1ba4c3ccb2c3bfea5e0fd9c9dd
-rw-r--r-- | gnu/packages/node.scm | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/gnu/packages/node.scm b/gnu/packages/node.scm index 1bb1256e8f..c47a1336d3 100644 --- a/gnu/packages/node.scm +++ b/gnu/packages/node.scm @@ -482,7 +482,7 @@ Node.js and web browsers.") (origin (method git-fetch) (uri (git-reference - (url "https://github.com/indutny/llparse-builder.git") + (url "https://github.com/nodejs/llparse-builder.git") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 @@ -491,10 +491,6 @@ Node.js and web browsers.") (modules '((guix build utils))) (snippet '(begin - ;; FIXME: Unneeded runtime dependency. - ;; https://github.com/indutny/llparse-builder/pull/2 - (substitute* "package.json" - (("\"@types/debug.*,") "")) ;; Fix imports for esbuild. ;; https://github.com/evanw/esbuild/issues/477 (substitute* '("src/node/invoke.ts" @@ -521,7 +517,8 @@ Node.js and web browsers.") (add-after 'patch-dependencies 'delete-dependencies (lambda _ (modify-json (delete-dependencies - `("@types/mocha" + `("@types/debug" + "@types/mocha" "@types/node" "mocha" "ts-node" @@ -539,7 +536,7 @@ Node.js and web browsers.") (list node-binary-search-bootstrap node-debug-bootstrap)) (native-inputs (list esbuild)) - (home-page "https://github.com/indutny/llparse-builder#readme") + (home-page "https://github.com/nodejs/llparse-builder#readme") (properties '((hidden? . #t))) (synopsis "Graph builder for consumption by llparse") (description "This package builds graphs for consumption by llparse.") |