guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 9342a54546c0180e128b2093866481ddcc5531c4
Author: Danny Milosavljevic <[email protected]>
AuthorDate: Fri Jan 2 23:50:18 2026 +0100
gnu: Add node-pend.
* gnu/packages/node-xyz.scm (node-pend): New variable.
---
gnu/packages/node-xyz.scm | 21 +++++++++++++++++++++
1 file changed, 21 insertions(+)
diff --git a/gnu/packages/node-xyz.scm b/gnu/packages/node-xyz.scm
index 5fba9d3356..49e05b63a7 100644
--- a/gnu/packages/node-xyz.scm
+++ b/gnu/packages/node-xyz.scm
@@ -2643,6 +2643,27 @@ It supports lazy decoding and detailed customization of
the reading/writing
code.")
(license license:bsd-3)))
+(define-public node-pend
+ (package
+ (name "node-pend")
+ (version "1.2.0")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/andrewrk/node-pend")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "0fy6x7safc0hwmfnic0yqqs2ak8ckmr1hk8pl30f03angy0qkwnx"))))
+ (build-system node-build-system)
+ (arguments '(#:tests? #f))
+ (home-page "https://github.com/andrewrk/node-pend")
+ (synopsis "Dead-simple optimistic async helper")
+ (description "This package provides an async helper for Node.js that
+manages pending callbacks and signals completion when all have finished.")
+ (license license:expat)))
+
(define-public node-picocolors
(package
(name "node-picocolors")