summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/node-xyz.scm21
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/node-xyz.scm b/gnu/packages/node-xyz.scm
index 5fba9d33569..49e05b63a74 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
2643code.") 2643code.")
2644 (license license:bsd-3))) 2644 (license license:bsd-3)))
2645 2645
2646(define-public node-pend
2647 (package
2648 (name "node-pend")
2649 (version "1.2.0")
2650 (source (origin
2651 (method git-fetch)
2652 (uri (git-reference
2653 (url "https://github.com/andrewrk/node-pend")
2654 (commit version)))
2655 (file-name (git-file-name name version))
2656 (sha256
2657 (base32
2658 "0fy6x7safc0hwmfnic0yqqs2ak8ckmr1hk8pl30f03angy0qkwnx"))))
2659 (build-system node-build-system)
2660 (arguments '(#:tests? #f))
2661 (home-page "https://github.com/andrewrk/node-pend")
2662 (synopsis "Dead-simple optimistic async helper")
2663 (description "This package provides an async helper for Node.js that
2664manages pending callbacks and signals completion when all have finished.")
2665 (license license:expat)))
2666
2646(define-public node-picocolors 2667(define-public node-picocolors
2647 (package 2668 (package
2648 (name "node-picocolors") 2669 (name "node-picocolors")