[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#51838] [PATCH v2 21/26] gnu: Add node-string-decoder.
From: |
Philip McGrath |
Subject: |
[bug#51838] [PATCH v2 21/26] gnu: Add node-string-decoder. |
Date: |
Fri, 19 Nov 2021 23:34:01 -0500 |
* gnu/packages/node-xyz.scm (node-string-decoder): New variable.
---
gnu/packages/node-xyz.scm | 34 ++++++++++++++++++++++++++++++++++
1 file changed, 34 insertions(+)
diff --git a/gnu/packages/node-xyz.scm b/gnu/packages/node-xyz.scm
index 6dff0ddba5..c6cce64f7d 100644
--- a/gnu/packages/node-xyz.scm
+++ b/gnu/packages/node-xyz.scm
@@ -410,6 +410,40 @@ (define-public node-safe-buffer
available.")
(license license:expat)))
+(define-public node-string-decoder
+ (package
+ (name "node-string-decoder")
+ (version "1.3.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/nodejs/string_decoder")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "0xxvyya9fl9rlkqwmxzqzbz4rdr3jgw4vf37hff7cgscxkhg266k"))))
+ (build-system node-build-system)
+ (arguments
+ '(#:absent-dependencies
+ '("tap"
+ "core-util-is"
+ "babel-polyfill")
+ ;; FIXME: Tests depend on node-tap
+ #:tests? #f))
+ (inputs
+ `(("node-safe-buffer" ,node-safe-buffer)
+ ("node-inherits" ,node-inherits)))
+ (home-page
+ "https://github.com/nodejs/string_decoder")
+ (synopsis
+ "Node.js core @code{string_decoder} for userland")
+ (description
+ "This package is a mirror of the @code{string_decoder} implementation in
+Node-core.")
+ (license license:expat)))
+
(define-public node-irc-colors
(package
(name "node-irc-colors")
--
2.32.0
- [bug#51838] [PATCH v2 10/26] gnu: node-llparse-builder-bootstrap: Use #:absent-dependencies., (continued)
- [bug#51838] [PATCH v2 10/26] gnu: node-llparse-builder-bootstrap: Use #:absent-dependencies., Jelle Licht, 2021/11/23
- [bug#51838] [PATCH v2 20/26] gnu: Add node-safe-buffer., Philip McGrath, 2021/11/19
- [bug#51838] [PATCH v2 12/26] gnu: node-llparse-bootstrap: Use #:absent-dependencies., Philip McGrath, 2021/11/19
- [bug#51838] [PATCH v2 18/26] guix: node-build-system: Add optional #:libuv? argument., Philip McGrath, 2021/11/19
- [bug#51838] [PATCH v2 18/26] guix: node-build-system: Add optional #:libuv? argument., Liliana Marie Prikler, 2021/11/20
- [bug#51838] [PATCH v2 18/26] guix: node-build-system: Add optional #:libuv? argument., Philip McGrath, 2021/11/20
- [bug#51838] [PATCH v2 14/26] gnu: node-wrappy: Use #:absent-dependencies., Philip McGrath, 2021/11/19
- [bug#51838] [PATCH v2 21/26] gnu: Add node-string-decoder.,
Philip McGrath <=
- [bug#51838] [PATCH v2 22/26] gnu: Add node-readable-stream., Philip McGrath, 2021/11/19
- [bug#51838] [PATCH v2 24/26] gnu: Add node-openzwave-shared., Philip McGrath, 2021/11/19
- [bug#51838] [PATCH v2 25/26] gnu: Add node-addon-api., Philip McGrath, 2021/11/19
- [bug#51838] [PATCH v2 17/26] gnu: node-irc: Use #:absent-dependencies., Philip McGrath, 2021/11/19
- [bug#51838] [PATCH v2 26/26] gnu: Add node-sqlite3., Philip McGrath, 2021/11/19
- [bug#51838] [PATCH v2 26/26] gnu: Add node-sqlite3., Liliana Marie Prikler, 2021/11/20
- [bug#51838] [PATCH v2 23/26] gnu: Add node-nan., Philip McGrath, 2021/11/19
- [bug#51838] [PATCH 03/11] guix: node-build-system: Support compiling add-ons with node-gyp., Philip McGrath, 2021/11/20
- [bug#51838] [PATCH 03/11] guix: node-build-system: Support compiling add-ons with node-gyp., Liliana Marie Prikler, 2021/11/20
- [bug#51838] [PATCH 05/11] gnu: Add node-safe-buffer., Philip McGrath, 2021/11/14