summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaxim Cournoyer <maxim@guixotic.coop>2026-06-10 18:19:21 +0900
committerMaxim Cournoyer <maxim@guixotic.coop>2026-06-24 14:49:24 +0900
commitd6f08b6bcdcd10bd53a4189b0f5994d4a7587355 (patch)
tree61c272b65b085630d05382011b5fd64d33d4c209
parent27478f77e89e5f97d9a770d5167a9e9aeb4821e7 (diff)
gnu: Add node-mkdirp.
* gnu/packages/node-xyz.scm (node-mkdirp): New variable. Change-Id: I796a0303da471e47010a15b5fab1a95206272d5d
-rw-r--r--gnu/packages/node-xyz.scm28
1 files changed, 28 insertions, 0 deletions
diff --git a/gnu/packages/node-xyz.scm b/gnu/packages/node-xyz.scm
index aecbb0dfa65..470d2f8e137 100644
--- a/gnu/packages/node-xyz.scm
+++ b/gnu/packages/node-xyz.scm
@@ -2373,6 +2373,34 @@ This is not a through or through2 stream. It doesn't transform the data, it just
2373 (list "LICENSE" "package.json" "README.md")) 2373 (list "LICENSE" "package.json" "README.md"))
2374 (chdir output)))))))) 2374 (chdir output))))))))
2375 2375
2376(define-public node-mkdirp
2377 (package
2378 (name "node-mkdirp")
2379 (version "3.0.1")
2380 (source
2381 (origin
2382 (method git-fetch)
2383 (uri (git-reference
2384 (url "https://github.com/isaacs/node-mkdirp")
2385 (commit (string-append "v" version))))
2386 (file-name (git-file-name name version))
2387 (sha256
2388 (base32 "1f3f8prf5zppnsp526bwf72yrq0g2vkz5b9hlkrda9ypg3a6cs85"))))
2389 (build-system node-build-system)
2390 (arguments
2391 (list
2392 #:tests? #f
2393 #:phases
2394 #~(modify-phases %standard-phases
2395 (add-after 'patch-dependencies 'delete-dev-dependencies
2396 (lambda _
2397 (modify-json (delete-dev-dependencies)))))))
2398 (home-page "https://github.com/isaacs/node-mkdirp")
2399 (synopsis "mkdir command implementation in Node.js")
2400 (description "This package provides a recursive @command{mkdir} command
2401implemented in JavaScript.")
2402 (license license:expat)))
2403
2376(define-public node-ms 2404(define-public node-ms
2377 (package 2405 (package
2378 (name "node-ms") 2406 (name "node-ms")