[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#51838] [PATCH v4 25/45] gnu: Add node-readable-stream.
From: |
Philip McGrath |
Subject: |
[bug#51838] [PATCH v4 25/45] gnu: Add node-readable-stream. |
Date: |
Mon, 13 Dec 2021 01:00:47 -0500 |
* gnu/packages/node-xyz.scm (node-readable-stream): New variable.
---
gnu/packages/node-xyz.scm | 54 +++++++++++++++++++++++++++++++++++++++
1 file changed, 54 insertions(+)
diff --git a/gnu/packages/node-xyz.scm b/gnu/packages/node-xyz.scm
index c6cce64f7d..3e06413908 100644
--- a/gnu/packages/node-xyz.scm
+++ b/gnu/packages/node-xyz.scm
@@ -444,6 +444,60 @@ (define-public node-string-decoder
Node-core.")
(license license:expat)))
+(define-public node-readable-stream
+ (package
+ (name "node-readable-stream")
+ (version "3.6.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/nodejs/readable-stream")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "0ybl4cdgsm9c5jq3xq8s01201jk8w0yakh63hlclsfbcdfqhd9ri"))))
+ (build-system node-build-system)
+ (arguments
+ `(#:absent-dependencies
+ `("@babel/cli"
+ "@babel/core"
+ "@babel/polyfill"
+ "@babel/preset-env"
+ "airtap"
+ "assert"
+ "bl"
+ "deep-strict-equal"
+ "events.once"
+ "glob"
+ "gunzip-maybe"
+ "hyperquest"
+ "lolex"
+ "nyc"
+ "pump"
+ "rimraf"
+ "tap"
+ "tape"
+ "tar-fs"
+ "util-promisify")
+ #:tests? #f))
+ (inputs
+ `(("node-util-deprecate" ,node-util-deprecate)
+ ("node-string-decoder" ,node-string-decoder)
+ ("node-inherits" ,node-inherits)))
+ (home-page
+ "https://github.com/nodejs/readable-stream")
+ (synopsis
+ "Node.js core streams for userland")
+ (description
+ "This package is a mirror of the streams implementations in Node.js.
+
+If you want to guarantee a stable streams base, regardless of what version of
+Node you (or the users of your libraries) are using, use
+@code{readable-stream} only and avoid the @code{stream} module in Node-core.")
+ (license license:expat)))
+
(define-public node-irc-colors
(package
(name "node-irc-colors")
--
2.32.0
- [bug#51838] [PATCH v4 19/45] gnu: node-irc: Use #:absent-dependencies., (continued)
- [bug#51838] [PATCH v4 19/45] gnu: node-irc: Use #:absent-dependencies., Philip McGrath, 2021/12/13
- [bug#51838] [PATCH v4 20/45] guix: node-build-system: Add implicit libuv input., Philip McGrath, 2021/12/13
- [bug#51838] [PATCH v4 17/45] gnu: node-once: Use #:absent-dependencies., Philip McGrath, 2021/12/13
- [bug#51838] [PATCH v4 18/45] gnu: node-irc-colors: Use #:absent-dependencies., Philip McGrath, 2021/12/13
- [bug#51838] [PATCH v4 21/45] guix: node-build-system: Add avoid-node-gyp-rebuild phase., Philip McGrath, 2021/12/13
- [bug#51838] [PATCH v4 28/45] gnu: Add node-addon-api., Philip McGrath, 2021/12/13
- [bug#51838] [PATCH v4 22/45] gnu: Add node-inherits., Philip McGrath, 2021/12/13
- [bug#51838] [PATCH v4 30/45] gnu: Add node-file-uri-to-path., Philip McGrath, 2021/12/13
- [bug#51838] [PATCH v4 31/45] gnu: Add node-bindings., Philip McGrath, 2021/12/13
- [bug#51838] [PATCH v4 37/45] gnu: Add node-serialport-parser-readling., Philip McGrath, 2021/12/13
- [bug#51838] [PATCH v4 25/45] gnu: Add node-readable-stream.,
Philip McGrath <=
- [bug#51838] [PATCH v4 27/45] gnu: Add node-openzwave-shared., Philip McGrath, 2021/12/13
- [bug#51838] [PATCH v4 23/45] gnu: Add node-safe-buffer., Philip McGrath, 2021/12/13
- [bug#51838] [PATCH v4 26/45] gnu: Add node-nan., Philip McGrath, 2021/12/13
- [bug#51838] [PATCH v4 32/45] gnu: Add node-segfault-handler., Philip McGrath, 2021/12/13
- [bug#51838] [PATCH v4 29/45] gnu: Add node-sqlite3., Philip McGrath, 2021/12/13
- [bug#51838] [PATCH v4 35/45] gnu: Add node-serialport-binding-abstract., Philip McGrath, 2021/12/13
- [bug#51838] [PATCH v4 24/45] gnu: Add node-string-decoder., Philip McGrath, 2021/12/13
- [bug#51838] [PATCH v4 33/45] gnu: Add node-ms., Philip McGrath, 2021/12/13
- [bug#51838] [PATCH v4 34/45] gnu: Add node-debug., Philip McGrath, 2021/12/13
- [bug#51838] [PATCH v4 36/45] gnu: Add node-serialport-parser-delimiter., Philip McGrath, 2021/12/13