[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
09/13: gnu: node: Add node-llparse-builder-bootstrap.
From: |
guix-commits |
Subject: |
09/13: gnu: node: Add node-llparse-builder-bootstrap. |
Date: |
Fri, 23 Oct 2020 18:14:46 -0400 (EDT) |
jlicht pushed a commit to branch wip-node-14
in repository guix.
commit 7dc79b384e0f7a0d127b6dc16cc3c8043d44bcb4
Author: Jelle Licht <jlicht@fsfe.org>
AuthorDate: Fri Oct 23 22:55:12 2020 +0200
gnu: node: Add node-llparse-builder-bootstrap.
* gnu/packages/node.scm (node-llparse-builder-bootstrap): New package.
---
gnu/packages/node.scm | 73 +++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 73 insertions(+)
diff --git a/gnu/packages/node.scm b/gnu/packages/node.scm
index 81dd80e..7a8b91e 100644
--- a/gnu/packages/node.scm
+++ b/gnu/packages/node.scm
@@ -331,6 +331,79 @@ modelled after @code{Node.js} core's debugging technique.
It works in
@code{Node.js} and web browsers.")
(license license:expat)))
+(define-public node-llparse-builder-bootstrap
+ (package
+ (name "node-llparse-builder")
+ (version "1.5.2")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/indutny/llparse-builder.git")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "0r82iiwqsb73k2fxw7842rjjiixllxpyc6yl9cq4ma6ybkf6xmzm"))
+ (modules '((guix build utils)))
+ (snippet
+ '(begin
+ ;; FIXME: Unneeded runtime dependency
+ ;; https://github.com/indutny/llparse-builder/pull/2
+ (substitute* "package.json"
+ (("\"@types/debug.*,") ""))
+ ;; Fix incorrect import semantics
+ ;; https://github.com/evanw/esbuild/issues/477
+ (substitute* (list
+ "src/node/invoke.ts"
+ "src/node/base.ts"
+ "src/node/consume.ts"
+ "src/node/match.ts"
+ "src/node/error.ts"
+ "src/node/pause.ts"
+ "src/edge.ts"
+ "src/utils.ts"
+ "src/loop-checker/index.ts"
+ "src/loop-checker/lattice.ts"
+ "src/code/field.ts"
+ "src/span-allocator.ts")
+ (("\\* as assert") "assert")
+ (("\\* as debugAPI") "debugAPI"))
+ #t))))
+ (build-system node-build-system)
+ (arguments
+ `(#:node ,node-bootstrap
+ #:tests? #f
+ #:phases
+ (modify-phases
+ %standard-phases
+ (delete 'configure)
+ (replace 'build
+ (lambda* (#:key inputs #:allow-other-keys)
+ (let ((esbuild (string-append
+ (assoc-ref inputs "esbuild")
+ "/bin/esbuild")))
+ (invoke esbuild
+ "--platform=node"
+ "--external:debug"
+ "--external:binary-search"
+ "--outfile=lib/builder.js"
+ "--bundle"
+ "src/builder.ts")))))))
+ (inputs
+ `(("node-binary-search" ,node-binary-search-bootstrap)
+ ("node-debug" ,node-debug-bootstrap)))
+ (native-inputs
+ `(("esbuild" ,esbuild)))
+ (home-page
+ "https://github.com/indutny/llparse-builder#readme")
+ (properties '((hidden? . #t)))
+ (synopsis
+ "Graph builder for consumption by @code{llparse}")
+ (description
+ "This package builds graphs for consumption by @code{llparse}.")
+ (license license:expat)))
+
(define-public libnode
(package
(inherit node)
- 02/13: gnu: Add libuv-node, (continued)
- 02/13: gnu: Add libuv-node, guix-commits, 2020/10/23
- 03/13: gnu: node: Use license prefix., guix-commits, 2020/10/23
- 05/13: gnu: node: Add node-semver-bootstrap., guix-commits, 2020/10/23
- 06/13: gnu: node: Add node-ms-bootstrap., guix-commits, 2020/10/23
- 08/13: gnu: node: Add node-debug-bootstrap., guix-commits, 2020/10/23
- 04/13: gnu: node: Add node-bootstrap., guix-commits, 2020/10/23
- 07/13: gnu: node: Add node-binary-search-bootstrap., guix-commits, 2020/10/23
- 12/13: gnu: node: Add llhttp-bootstrap., guix-commits, 2020/10/23
- 11/13: gnu: node: Add node-llparse-bootstrap., guix-commits, 2020/10/23
- 10/13: gnu: node: Add node-llparse-frontend-bootstrap., guix-commits, 2020/10/23
- 09/13: gnu: node: Add node-llparse-builder-bootstrap.,
guix-commits <=
- 13/13: gnu: node: Add node-14.14, guix-commits, 2020/10/23