guix_mirror_bot pushed a commit to branch master
in repository guix.

commit a9ae329525a44f373a680f609ecc0b0d35b81ea7
Author: Danny Milosavljevic <[email protected]>
AuthorDate: Fri Jan 2 23:48:39 2026 +0100

    gnu: Add node-graceful-fs.
    
    * gnu/packages/node-xyz.scm (node-graceful-fs): New variable.
    
    Change-Id: Ia222cbae55e18aeaf0a0dd5def60eea750ee4e59
---
 gnu/packages/node-xyz.scm | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/gnu/packages/node-xyz.scm b/gnu/packages/node-xyz.scm
index 6692f94077..8cbfc0ab2a 100644
--- a/gnu/packages/node-xyz.scm
+++ b/gnu/packages/node-xyz.scm
@@ -1363,6 +1363,34 @@ suitable for use with the @code{fs} module functions.")
 buffer, or array.  Useful for getting the result of a stream.")
     (license license:expat)))
 
+(define-public node-graceful-fs
+  (package
+    (name "node-graceful-fs")
+    (version "4.2.10")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/isaacs/node-graceful-fs";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "18al1wpdmpi92yvifa3q1vga3szndfd84fqlakh9abn8bfsqxkp8"))))
+    (build-system node-build-system)
+    (arguments
+     '(#:tests? #f
+       #:phases
+       (modify-phases %standard-phases
+         (add-after 'patch-dependencies 'delete-dev-dependencies
+           (lambda _
+             (modify-json (delete-dev-dependencies)))))))
+    (home-page "https://github.com/isaacs/node-graceful-fs";)
+    (synopsis "Drop-in replacement for fs with various improvements")
+    (description "This package provides a drop-in replacement for the fs
+module that makes various improvements, including queueing operations,
+retrying EMFILE errors, and working around various platform quirks.")
+    (license license:isc)))
+
 (define-public node-global-gradle-clean
   (package
     (name "node-global-gradle-clean")

Reply via email to