guix_mirror_bot pushed a commit to branch master
in repository guix.

commit bc57d203744906016c949aed679217fbf60a4c45
Author: Maxim Cournoyer <[email protected]>
AuthorDate: Thu Jun 11 10:34:52 2026 +0900

    gnu: Add node-picomatch.
    
    * gnu/packages/node-xyz.scm (node-picomatch): New variable.
    
    Change-Id: Idfd76062060a26cdd6940e9a289c1bb47c6392c0
---
 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 3095bf5e83..278e1d81db 100644
--- a/gnu/packages/node-xyz.scm
+++ b/gnu/packages/node-xyz.scm
@@ -2809,6 +2809,36 @@ manages pending callbacks and signals completion when 
all have finished.")
     (home-page (git-reference-url (origin-uri source)))
     (license license:isc)))
 
+(define-public node-picomatch
+  (package
+    (name "node-picomatch")
+    (version "4.0.4")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/micromatch/picomatch";)
+             (commit version)))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0nw33ky773d66x74ycsik420bm6j1yh4f8qzm89if4az48kpbsm5"))))
+    (build-system node-build-system)
+    (arguments
+     (list
+      #:tests? #f                       ;requires mocha
+      #:phases
+      #~(modify-phases %standard-phases
+          (add-after 'patch-dependencies 'delete-dev-dependencies
+            (lambda _
+              (modify-json (delete-dev-dependencies)))))))
+    (home-page "https://github.com/micromatch/picomatch";)
+    (synopsis "Fast and accurate matcher written in JavaScript")
+    (description "Picomatch is a very fast and accurate glob matcher written
+in @code{JavaScript}, with no external dependencies and full support for
+standard and extended Bash glob features, including braces, extglobs, POSIX
+brackets, and regular expressions.")
+    (license license:expat)))
+
 (define-public node-pretty-ms
   (package
     (name "node-pretty-ms")

Reply via email to