guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 70d2a055b51a41b3d9e62682dca412ba2005bed5
Author: Danny Milosavljevic <[email protected]>
AuthorDate: Fri Jan 2 23:52:41 2026 +0100

    gnu: Add node-yauzl.
    
    * gnu/packages/node-xyz.scm (node-yauzl): New variable.
    
    Change-Id: I5c51dd8e8fcdcbfd5409686a2de3083603afedde
---
 gnu/packages/node-xyz.scm | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/gnu/packages/node-xyz.scm b/gnu/packages/node-xyz.scm
index d451e6829f..083f522460 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")

Reply via email to