diff options
| author | Danny Milosavljevic <dannym@friendly-machines.com> | 2026-01-02 23:52:41 +0100 |
|---|---|---|
| committer | Danny Milosavljevic <dannym@friendly-machines.com> | 2026-02-08 21:23:36 +0100 |
| commit | 70d2a055b51a41b3d9e62682dca412ba2005bed5 (patch) | |
| tree | 0a5d277da61ba2a30b1c32905ffbd487770fab0a | |
| parent | 9da154727c176227a59857d78745c07d1cfd3a9c (diff) | |
gnu: Add node-yauzl.
* gnu/packages/node-xyz.scm (node-yauzl): New variable.
Change-Id: I5c51dd8e8fcdcbfd5409686a2de3083603afedde
| -rw-r--r-- | gnu/packages/node-xyz.scm | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/gnu/packages/node-xyz.scm b/gnu/packages/node-xyz.scm index d451e6829fc..083f5224606 100644 --- a/gnu/packages/node-xyz.scm +++ b/gnu/packages/node-xyz.scm @@ -4545,6 +4545,34 @@ implementation.") YAML 1.1 and YAML 1.2.") (license license:isc))) +(define-public node-yauzl + (package + (name "node-yauzl") + (version "2.10.0") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/thejoshwolfe/yauzl") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "02f7zknlmjizi9l4d5z0vx659wl9xi7kgzn24kqj5wfkp3b83cij")))) + (build-system node-build-system) + (arguments + '(#:tests? #f + #:phases (modify-phases %standard-phases + (add-after 'patch-dependencies 'delete-dev-dependencies + (lambda _ + (modify-json (delete-dev-dependencies))))))) + (inputs (list node-buffer-crc32 node-fd-slicer node-pend)) + (home-page "https://github.com/thejoshwolfe/yauzl") + (synopsis "Yet another unzip library for node") + (description "This package provides an unzip library for Node.js that +handles ZIP file reading with streaming support and proper handling of +ZIP64 extensions.") + (license license:expat))) + (define-public node-yazl (package (name "node-yazl") |
