guix_mirror_bot pushed a commit to branch master
in repository guix.

commit c55facf1bf6e3b1798d0fe8eee8b0eec6867ac69
Author: Danny Milosavljevic <[email protected]>
AuthorDate: Fri Jan 2 23:45:29 2026 +0100

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

diff --git a/gnu/packages/node-xyz.scm b/gnu/packages/node-xyz.scm
index 63b5c01c8f..033e091143 100644
--- a/gnu/packages/node-xyz.scm
+++ b/gnu/packages/node-xyz.scm
@@ -346,6 +346,32 @@ addons in a wide array of potential locations.")
     (home-page (git-reference-url (origin-uri source)))
     (license license:expat)))
 
+(define-public node-balanced-match-1
+  (package
+    (name "node-balanced-match")
+    (version "1.0.2")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/juliangruber/balanced-match";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0977r6hv9fyv6f8wvn31vcncxwhffnn05y0h4hmpkg8p2vs9ip0b"))))
+    (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/juliangruber/balanced-match";)
+    (synopsis "Match balanced string pairs in JavaScript")
+    (description "This package provides a way to match balanced string pairs.")
+    (license license:expat)))
+
 (define-public node-buffer-crc32
   (package
     (name "node-buffer-crc32")

Reply via email to