1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-06 21:20:33 +02:00

gnu: Add node-graceful-fs.

* gnu/packages/node-xyz.scm (node-graceful-fs): New variable.

Change-Id: Ia222cbae55e18aeaf0a0dd5def60eea750ee4e59
This commit is contained in:
Danny Milosavljevic
2026-01-02 23:48:39 +01:00
parent 2103fdc231
commit a9ae329525

View File

@@ -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")