[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
06/13: gnu: Add node-yazl.
From: |
guix-commits |
Subject: |
06/13: gnu: Add node-yazl. |
Date: |
Wed, 20 Jul 2022 11:14:38 -0400 (EDT) |
mbakke pushed a commit to branch master
in repository guix.
commit 2b7fc1018520d09f82e60533fbfb053863253986
Author: Nicolas Graves <ngraves@ngraves.fr>
AuthorDate: Wed Jul 20 11:16:01 2022 +0200
gnu: Add node-yazl.
* gnu/packages/node-xyz.scm (node-yazl): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org>
---
gnu/packages/node-xyz.scm | 36 ++++++++++++++++++++++++++++++++++++
1 file changed, 36 insertions(+)
diff --git a/gnu/packages/node-xyz.scm b/gnu/packages/node-xyz.scm
index d025436465..024418b329 100644
--- a/gnu/packages/node-xyz.scm
+++ b/gnu/packages/node-xyz.scm
@@ -4,6 +4,7 @@
;;; Copyright © 2021 Noisytoot <noisytoot@disroot.org>
;;; Copyright © 2021 Charles <charles.b.jackson@protonmail.com>
;;; Copyright © 2021 Philip McGrath <philip@philipmcgrath.com>
+;;; Copyright © 2022 Nicolas Graves <ngraves@ngraves.fr>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -1331,3 +1332,38 @@ connection.")))
accessing serial ports. This package is the recommended entry point for most
projects. It combines a high-level Node.js stream interface with a useful
default set of parsers and bindings.")))
+
+(define-public node-yazl
+ (package
+ (name "node-yazl")
+ (version "2.5.1")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/thejoshwolfe/yazl")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "1lhwqqnvazpi4xw81ldpx0ky0h1j5rcx3br480q2bnzj21cm109n"))))
+ (build-system node-build-system)
+ (arguments
+ '(#:tests? #f
+ #:phases (modify-phases %standard-phases
+ (replace 'configure
+ (lambda _
+ (invoke "npm" "--offline" "--ignore-scripts" "install"
+ "--production"))))))
+ (inputs (list node-buffer-crc32))
+ (home-page "https://github.com/thejoshwolfe/yazl")
+ (synopsis "Yet another zip library for node")
+ (description
+ "This package provides a zip library for Node. It follows the
+following principles:
+@enumerate
+@item Don't block the JavaScript thread. Use and provide async APIs.
+@item Keep memory usage under control. Don't attempt to buffer entire
+files in RAM at once.
+@item Prefer to open input files one at a time than all at once.
+@end enumerate")
+ (license license:expat)))
- branch master updated (6aa648f8d6 -> cda3de3b7d), guix-commits, 2022/07/20
- 04/13: gnu: fossil: Update to 2.18., guix-commits, 2022/07/20
- 10/13: gnu: Add node-pbf., guix-commits, 2022/07/20
- 08/13: gnu: Add node-resolve-protobuf-schema., guix-commits, 2022/07/20
- 02/13: gnu: fossil: Add 'release-monitoring-url' property., guix-commits, 2022/07/20
- 06/13: gnu: Add node-yazl.,
guix-commits <=
- 12/13: gnu: Add node-crx3., guix-commits, 2022/07/20
- 05/13: gnu: Add node-buffer-crc32., guix-commits, 2022/07/20
- 01/13: gnu: smb4k: Update to 3.1.3., guix-commits, 2022/07/20
- 09/13: gnu: Add node-ieee754., guix-commits, 2022/07/20
- 11/13: gnu: Add node-minimist., guix-commits, 2022/07/20
- 13/13: gnu: modifying make-chromium-extension to rely on node-crx3., guix-commits, 2022/07/20
- 03/13: gnu: SQLite: Update to 3.39.1., guix-commits, 2022/07/20
- 07/13: gnu: Add node-protocol-buffers-schema., guix-commits, 2022/07/20