diff options
| author | Danny Milosavljevic <dannym@friendly-machines.com> | 2026-01-02 23:48:39 +0100 |
|---|---|---|
| committer | Danny Milosavljevic <dannym@friendly-machines.com> | 2026-02-08 21:23:33 +0100 |
| commit | a9ae329525a44f373a680f609ecc0b0d35b81ea7 (patch) | |
| tree | d839b1d4cc4deff6da59c7e8e6c29af6b1a3e71a /gnu | |
| parent | 2103fdc231d86555e15c6259276532311fbd0c12 (diff) | |
gnu: Add node-graceful-fs.
* gnu/packages/node-xyz.scm (node-graceful-fs): New variable.
Change-Id: Ia222cbae55e18aeaf0a0dd5def60eea750ee4e59
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/node-xyz.scm | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/gnu/packages/node-xyz.scm b/gnu/packages/node-xyz.scm index 6692f94077d..8cbfc0ab2ad 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.") | |||
| 1363 | buffer, or array. Useful for getting the result of a stream.") | 1363 | buffer, or array. Useful for getting the result of a stream.") |
| 1364 | (license license:expat))) | 1364 | (license license:expat))) |
| 1365 | 1365 | ||
| 1366 | (define-public node-graceful-fs | ||
| 1367 | (package | ||
| 1368 | (name "node-graceful-fs") | ||
| 1369 | (version "4.2.10") | ||
| 1370 | (source | ||
| 1371 | (origin | ||
| 1372 | (method git-fetch) | ||
| 1373 | (uri (git-reference | ||
| 1374 | (url "https://github.com/isaacs/node-graceful-fs") | ||
| 1375 | (commit (string-append "v" version)))) | ||
| 1376 | (file-name (git-file-name name version)) | ||
| 1377 | (sha256 | ||
| 1378 | (base32 "18al1wpdmpi92yvifa3q1vga3szndfd84fqlakh9abn8bfsqxkp8")))) | ||
| 1379 | (build-system node-build-system) | ||
| 1380 | (arguments | ||
| 1381 | '(#:tests? #f | ||
| 1382 | #:phases | ||
| 1383 | (modify-phases %standard-phases | ||
| 1384 | (add-after 'patch-dependencies 'delete-dev-dependencies | ||
| 1385 | (lambda _ | ||
| 1386 | (modify-json (delete-dev-dependencies))))))) | ||
| 1387 | (home-page "https://github.com/isaacs/node-graceful-fs") | ||
| 1388 | (synopsis "Drop-in replacement for fs with various improvements") | ||
| 1389 | (description "This package provides a drop-in replacement for the fs | ||
| 1390 | module that makes various improvements, including queueing operations, | ||
| 1391 | retrying EMFILE errors, and working around various platform quirks.") | ||
| 1392 | (license license:isc))) | ||
| 1393 | |||
| 1366 | (define-public node-global-gradle-clean | 1394 | (define-public node-global-gradle-clean |
| 1367 | (package | 1395 | (package |
| 1368 | (name "node-global-gradle-clean") | 1396 | (name "node-global-gradle-clean") |
