summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorDanny Milosavljevic <dannym@friendly-machines.com>2026-01-02 23:52:41 +0100
committerDanny Milosavljevic <dannym@friendly-machines.com>2026-02-08 21:23:36 +0100
commit70d2a055b51a41b3d9e62682dca412ba2005bed5 (patch)
tree0a5d277da61ba2a30b1c32905ffbd487770fab0a /gnu
parent9da154727c176227a59857d78745c07d1cfd3a9c (diff)
gnu: Add node-yauzl.
* gnu/packages/node-xyz.scm (node-yauzl): New variable. Change-Id: I5c51dd8e8fcdcbfd5409686a2de3083603afedde
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/node-xyz.scm28
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.")
4545YAML 1.1 and YAML 1.2.") 4545YAML 1.1 and YAML 1.2.")
4546 (license license:isc))) 4546 (license license:isc)))
4547 4547
4548(define-public node-yauzl
4549 (package
4550 (name "node-yauzl")
4551 (version "2.10.0")
4552 (source (origin
4553 (method git-fetch)
4554 (uri (git-reference
4555 (url "https://github.com/thejoshwolfe/yauzl")
4556 (commit version)))
4557 (file-name (git-file-name name version))
4558 (sha256
4559 (base32
4560 "02f7zknlmjizi9l4d5z0vx659wl9xi7kgzn24kqj5wfkp3b83cij"))))
4561 (build-system node-build-system)
4562 (arguments
4563 '(#:tests? #f
4564 #:phases (modify-phases %standard-phases
4565 (add-after 'patch-dependencies 'delete-dev-dependencies
4566 (lambda _
4567 (modify-json (delete-dev-dependencies)))))))
4568 (inputs (list node-buffer-crc32 node-fd-slicer node-pend))
4569 (home-page "https://github.com/thejoshwolfe/yauzl")
4570 (synopsis "Yet another unzip library for node")
4571 (description "This package provides an unzip library for Node.js that
4572handles ZIP file reading with streaming support and proper handling of
4573ZIP64 extensions.")
4574 (license license:expat)))
4575
4548(define-public node-yazl 4576(define-public node-yazl
4549 (package 4577 (package
4550 (name "node-yazl") 4578 (name "node-yazl")