guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 56649d70482d9be9181517a05a8a318adb906bc2
Author: Danny Milosavljevic <[email protected]>
AuthorDate: Fri Jan 2 23:50:02 2026 +0100

    gnu: Add node-minimatch.
    
    * gnu/packages/node-xyz.scm (node-minimatch): New variable.
---
 gnu/packages/node-xyz.scm | 29 +++++++++++++++++++++++++++++
 1 file changed, 29 insertions(+)

diff --git a/gnu/packages/node-xyz.scm b/gnu/packages/node-xyz.scm
index 1f05643835..28f3fdfe89 100644
--- a/gnu/packages/node-xyz.scm
+++ b/gnu/packages/node-xyz.scm
@@ -2070,6 +2070,35 @@ random number generator.")
 on mime-db.")
     (license license:expat)))
 
+(define-public node-minimatch-3
+  (package
+    (name "node-minimatch")
+    (version "3.1.2")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/isaacs/minimatch";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1g6w4nn8vx38j4ka5hlphhp505dxyr6dv7g99kfzrjrlnlh7vjbr"))))
+    (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)))))))
+    (inputs
+     (list node-brace-expansion-1))
+    (home-page "https://github.com/isaacs/minimatch";)
+    (synopsis "Glob matcher for JavaScript")
+    (description "This package provides a minimal matching utility for
+JavaScript.")
+    (license license:isc)))
+
 (define-public node-minimatch
   (package
     (name "node-minimatch")

Reply via email to