[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#51838] [PATCH v3 24/43] gnu: Add node-string-decoder.
From: |
Philip McGrath |
Subject: |
[bug#51838] [PATCH v3 24/43] gnu: Add node-string-decoder. |
Date: |
Wed, 8 Dec 2021 15:28:19 -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 v3 13/43] gnu: node-llparse-bootstrap: Use #:absent-dependencies., (continued)
- [bug#51838] [PATCH v3 34/43] gnu: Add node-serialport-parser-delimiter., Philip McGrath, 2021/12/08
- [bug#51838] [PATCH v3 32/43] gnu: Add node-segfault-handler., Philip McGrath, 2021/12/08
- [bug#51838] [PATCH v3 32/43] gnu: Add node-segfault-handler., Pierre Langlois, 2021/12/12
- [bug#51838] [PATCH v3 32/43] gnu: Add node-segfault-handler., Philip McGrath, 2021/12/12
- [bug#51838] [PATCH v3 35/43] gnu: Add node-serialport-parser-readling., Philip McGrath, 2021/12/08
- [bug#51838] [PATCH v3 16/43] gnu: node-once: Use #:absent-dependencies., Philip McGrath, 2021/12/08
- [bug#51838] [PATCH v3 24/43] gnu: Add node-string-decoder.,
Philip McGrath <=
- [bug#51838] [PATCH v3 17/43] gnu: node-irc-colors: Use #:absent-dependencies., Philip McGrath, 2021/12/08
- [bug#51838] [PATCH v3 22/43] gnu: Add node-inherits., Philip McGrath, 2021/12/08
- [bug#51838] [PATCH v3 25/43] gnu: Add node-readable-stream., Philip McGrath, 2021/12/08
- [bug#51838] [PATCH v3 21/43] guix: node-build-system: Add avoid-node-gyp-rebuild phase., Philip McGrath, 2021/12/08
- [bug#51838] [PATCH v3 31/43] gnu: Add node-bindings., Philip McGrath, 2021/12/08
- [bug#51838] [PATCH v3 31/43] gnu: Add node-bindings., Pierre Langlois, 2021/12/12
- [bug#51838] [PATCH v3 31/43] gnu: Add node-bindings., Philip McGrath, 2021/12/12
- [bug#51838] [PATCH v3 28/43] gnu: Add node-addon-api., Philip McGrath, 2021/12/08
- [bug#51838] [PATCH v3 20/43] guix: node-build-system: Add delete-lockfiles phase., Philip McGrath, 2021/12/08
- [bug#51838] [PATCH v3 20/43] guix: node-build-system: Add delete-lockfiles phase., Pierre Langlois, 2021/12/12