[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
05/13: gnu: Add node-buffer-crc32.
From: |
guix-commits |
Subject: |
05/13: gnu: Add node-buffer-crc32. |
Date: |
Wed, 20 Jul 2022 11:14:38 -0400 (EDT) |
mbakke pushed a commit to branch master
in repository guix.
commit a61d5df8c3083b9fd4d9db39708691da62d0eab3
Author: Nicolas Graves <ngraves@ngraves.fr>
AuthorDate: Tue Jul 19 23:28:59 2022 +0200
gnu: Add node-buffer-crc32.
* gnu/packages/node-xyz.scm (node-buffer-crc32): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org>
---
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 9dcb5c3d16..d025436465 100644
--- a/gnu/packages/node-xyz.scm
+++ b/gnu/packages/node-xyz.scm
@@ -56,6 +56,34 @@
architecture supporting plugins.")
(license license:expat)))
+(define-public node-buffer-crc32
+ (package
+ (name "node-buffer-crc32")
+ (version "0.2.13")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/brianloveswords/buffer-crc32")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "09qx2mnd898190m50mc0rhyvbm7d677sxz9bn09qmqkz6fnsddgf"))))
+ (build-system node-build-system)
+ (arguments
+ '(#:tests? #f
+ #:phases (modify-phases %standard-phases
+ (replace 'configure
+ (lambda _
+ (invoke "npm" "--offline" "--ignore-scripts" "install"
+ "--production"))))))
+ (home-page "https://github.com/brianloveswords/buffer-crc32")
+ (synopsis "CRC32 implementation in Javascript")
+ (description
+ "This package provides a CRC32 algorithm that works with binary data
+and fancy character sets, signed or unsigned data and has tests, for Node.")
+ (license license:expat)))
+
(define-public node-color-name
(package
(name "node-color-name")
- 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, 2022/07/20
- 12/13: gnu: Add node-crx3., guix-commits, 2022/07/20
- 05/13: gnu: Add node-buffer-crc32.,
guix-commits <=
- 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