[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
12/13: gnu: node: Add llhttp-bootstrap.
From: |
guix-commits |
Subject: |
12/13: gnu: node: Add llhttp-bootstrap. |
Date: |
Fri, 23 Oct 2020 18:14:47 -0400 (EDT) |
jlicht pushed a commit to branch wip-node-14
in repository guix.
commit 3fa15059cde33a4f89af59f31a227ee91c065855
Author: Jelle Licht <jlicht@fsfe.org>
AuthorDate: Fri Oct 23 22:56:29 2020 +0200
gnu: node: Add llhttp-bootstrap.
* gnu/packages/node.scm (llhttp-bootstrap): New package.
---
gnu/packages/node.scm | 69 +++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 69 insertions(+)
diff --git a/gnu/packages/node.scm b/gnu/packages/node.scm
index 5b88253..8d59df6 100644
--- a/gnu/packages/node.scm
+++ b/gnu/packages/node.scm
@@ -530,6 +530,75 @@ compiler.")
definition into a C output.")
(license license:expat)))
+(define-public llhttp-bootstrap
+ (package
+ (name "llhttp")
+ (version "2.1.0")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/nodejs/llhttp.git")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "08ylnirqrk63h0ww1m79p0bh6rwayrhd4v28p353qlp3qcffwwb0"))
+ (modules '((guix build utils)))
+ (snippet
+ '(begin
+ ;; Fix incorrect import semantics
+ ;; https://github.com/evanw/esbuild/issues/477
+ (substitute* "src/llhttp/http.ts"
+ (("\\* as assert")
+ "assert"))
+ (substitute* "Makefile"
+ (("npx ts-node bin/generate.ts")
+ "node bin/generate.js"))
+ #t))))
+ (build-system gnu-build-system)
+ (arguments
+ `(#:tests? #f ; no tests
+ #:make-flags (list "CLANG=gcc"
+ (string-append "DESTDIR=" (assoc-ref %outputs "out"))
+ "PREFIX=")
+ #:phases (modify-phases %standard-phases
+ (replace 'configure
+ (lambda* (#:key inputs #:allow-other-keys)
+ (let ((esbuild (string-append
+ (assoc-ref inputs "esbuild")
+ "/bin/esbuild")))
+ (invoke esbuild
+ "--platform=node"
+ "--external:semver"
+ "--external:llparse"
+ "--outfile=bin/generate.js"
+ "--bundle" "bin/generate.ts"))))
+ (add-before 'install 'create-install-directories
+ (lambda* (#:key outputs #:allow-other-keys)
+ (let ((out (assoc-ref outputs "out")))
+ (for-each (lambda (dir)
+ (mkdir-p (string-append out dir)))
+ (list "/lib" "/include" "/src"))
+ #t)))
+ (add-after 'install 'install-src
+ (lambda* (#:key outputs #:allow-other-keys)
+ (let* ((out (assoc-ref outputs "out"))
+ (src-dir (string-append out "/src")))
+ (install-file "build/c/llhttp.c" src-dir)
+ #t))))))
+ (native-inputs
+ `(("esbuild" ,esbuild)
+ ("node" ,node-bootstrap)
+ ("node-semver" ,node-semver-bootstrap)
+ ("node-llparse-bootstrap" ,node-llparse-bootstrap)))
+ (home-page "https://github.com/nodejs/llhttp")
+ (properties '((hidden? . #t)))
+ (synopsis "Port of @code{http_parser} to @code{llparse}")
+ (description "@code{llhttp} is a port of @code{http_parser} to TypeScript.
+@code{llparse} is used to generate the output C source file, which can be
+compiled and linked with the embedder's program (like @code{Node.js}).")
+ (license license:expat)))
+
(define-public libnode
(package
(inherit node)
- branch wip-node-14 created (now 916db33), guix-commits, 2020/10/23
- 01/13: build-system: Rewrite node build system., guix-commits, 2020/10/23
- 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 <=
- 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, 2020/10/23
- 13/13: gnu: node: Add node-14.14, guix-commits, 2020/10/23