* [bug#47682] [PATCH v2] gnu: Add node-once.
@ 2021-04-09 22:10 Ron Nazarov via Guix-patches via
2021-05-04 21:14 ` bug#47682: " Tobias Geerinckx-Rice via Guix-patches via
0 siblings, 1 reply; 2+ messages in thread
From: Ron Nazarov via Guix-patches via @ 2021-04-09 22:10 UTC (permalink / raw)
To: 47682; +Cc: Ron Nazarov
* gnu/packages/node-xyz.scm (node-once): New variable.
---
gnu/packages/node-xyz.scm | 30 ++++++++++++++++++++++++++++++
1 file changed, 30 insertions(+)
diff --git a/gnu/packages/node-xyz.scm b/gnu/packages/node-xyz.scm
index f401380310..ee0b5e62d9 100644
--- a/gnu/packages/node-xyz.scm
+++ b/gnu/packages/node-xyz.scm
@@ -298,3 +298,33 @@ function with browser support.")
(synopsis "Callback wrapping utility")
(description "@code{wrappy} is a utility for Node.js to wrap callbacks.")
(license license:isc)))
+
+(define-public node-once
+ (package
+ (name "node-once")
+ (version "1.4.0")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/isaacs/once")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "1z8dcbf28dqdcp4wb0c53wrs90a07nkrax2c9kk26dsk1dhrnxav"))))
+ (build-system node-build-system)
+ (arguments
+ '(#:tests? #f ; FIXME: Tests depend on node-tap
+ #:phases
+ (modify-phases %standard-phases
+ ;; If configure existed it would fail due to tap being missing,
+ ;; as we do not have tap packaged yet, tap is used for tests.
+ ;; This package still works as a dependency of glob and inflight,
+ ;; which are being packaged.
+ (delete 'configure))))
+ (inputs
+ `(("node-wrappy" ,node-wrappy)))
+ (home-page "https://github.com/isaacs/once")
+ (synopsis "Node.js module to only run a function once")
+ (description "@code{once} is a Node.js module to only run a function once.")
+ (license license:isc)))
--
2.30.2
^ permalink raw reply related [flat|nested] 2+ messages in thread
* bug#47682: [PATCH v2] gnu: Add node-once.
2021-04-09 22:10 [bug#47682] [PATCH v2] gnu: Add node-once Ron Nazarov via Guix-patches via
@ 2021-05-04 21:14 ` Tobias Geerinckx-Rice via Guix-patches via
0 siblings, 0 replies; 2+ messages in thread
From: Tobias Geerinckx-Rice via Guix-patches via @ 2021-05-04 21:14 UTC (permalink / raw)
To: 47682-done
[-- Attachment #1: Type: text/plain, Size: 244 bytes --]
Noisy,
> This package still works as a dependency of glob and inflight
If you say so!
> which are being packaged.
I dropped this part as it I hope it to be outdated soon.
Pushed as 2959adef94ba8684127bb995ce26b3234b4d457d.
Thanks,
T G-R
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 247 bytes --]
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2021-05-04 21:15 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-04-09 22:10 [bug#47682] [PATCH v2] gnu: Add node-once Ron Nazarov via Guix-patches via
2021-05-04 21:14 ` bug#47682: " Tobias Geerinckx-Rice via Guix-patches via
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/guix.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).