guix_mirror_bot pushed a commit to branch master
in repository guix.

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

    gnu: Add node-brace-expansion@1.
    
    * gnu/packages/node-xyz.scm (node-brace-expansion-1): 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 033e091143..d36fd0656c 100644
--- a/gnu/packages/node-xyz.scm
+++ b/gnu/packages/node-xyz.scm
@@ -321,6 +321,35 @@ HTTP.Agent instances from a function.")
 addons in a wide array of potential locations.")
     (license license:expat)))
 
+(define-public node-brace-expansion-1
+  (package
+    (name "node-brace-expansion")
+    (version "1.1.11")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/juliangruber/brace-expansion";)
+             (commit version)))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "117k5p167k4sz739rr83cjhf7bsq0iidvm8ylvnybbj86varv9q1"))))
+    (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-balanced-match-1 node-concat-map))
+    (home-page "https://github.com/juliangruber/brace-expansion";)
+    (synopsis "Brace expansion for JavaScript")
+    (description "This package provides brace expansion as known from
+sh/bash, for JavaScript.")
+    (license license:expat)))
+
 (define-public node-brace-expansion
   (package
     (name "node-brace-expansion")

Reply via email to