summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorDanny Milosavljevic <dannym@friendly-machines.com>2026-01-02 23:48:31 +0100
committerDanny Milosavljevic <dannym@friendly-machines.com>2026-02-08 21:23:33 +0100
commit2103fdc231d86555e15c6259276532311fbd0c12 (patch)
treec00b1a14ea7b9f95601b37a12908dff22ab337ff /gnu
parenta63735500bbcff1c80755f188316c1ca909667b7 (diff)
gnu: Add node-get-stream.
* gnu/packages/node-xyz.scm (node-get-stream): New variable.
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/node-xyz.scm27
1 files changed, 27 insertions, 0 deletions
diff --git a/gnu/packages/node-xyz.scm b/gnu/packages/node-xyz.scm
index f2a44de5604..6692f94077d 100644
--- a/gnu/packages/node-xyz.scm
+++ b/gnu/packages/node-xyz.scm
@@ -1336,6 +1336,33 @@ suitable for use with the @code{fs} module functions.")
1336 (home-page (git-reference-url (origin-uri source))) 1336 (home-page (git-reference-url (origin-uri source)))
1337 (license license:isc))) 1337 (license license:isc)))
1338 1338
1339(define-public node-get-stream
1340 (package
1341 (name "node-get-stream")
1342 (version "5.2.0")
1343 (source (origin
1344 (method git-fetch)
1345 (uri (git-reference
1346 (url "https://github.com/sindresorhus/get-stream")
1347 (commit (string-append "v" version))))
1348 (file-name (git-file-name name version))
1349 (sha256
1350 (base32
1351 "1mc7fw8qc0b1a4i2h4mz1d4hygla5grxpfh8dk2rabnw46lxm73m"))))
1352 (build-system node-build-system)
1353 (arguments
1354 '(#:tests? #f
1355 #:phases (modify-phases %standard-phases
1356 (add-after 'patch-dependencies 'delete-dev-dependencies
1357 (lambda _
1358 (modify-json (delete-dev-dependencies)))))))
1359 (inputs (list node-pump))
1360 (home-page "https://github.com/sindresorhus/get-stream")
1361 (synopsis "Get a stream as a string, buffer, or array")
1362 (description "This package provides a way to get a stream as a string,
1363buffer, or array. Useful for getting the result of a stream.")
1364 (license license:expat)))
1365
1339(define-public node-global-gradle-clean 1366(define-public node-global-gradle-clean
1340 (package 1367 (package
1341 (name "node-global-gradle-clean") 1368 (name "node-global-gradle-clean")