guix_mirror_bot pushed a commit to branch master
in repository guix.

commit eb5d8bc68b09081f5e021efdd78d11f780be8b6e
Author: Danny Milosavljevic <[email protected]>
AuthorDate: Fri Jan 2 23:46:44 2026 +0100

    gnu: Add node-concat-map.
    
    * gnu/packages/node-xyz.scm (node-concat-map): New variable.
    
    Change-Id: I4b5c808f640e2c8e3985b56bffdc52663383b1f5
---
 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 d1215848d8..121affb842 100644
--- a/gnu/packages/node-xyz.scm
+++ b/gnu/packages/node-xyz.scm
@@ -648,6 +648,32 @@ Node.js console output.")
 interfaces in Node.js.")
     (license license:expat)))
 
+(define-public node-concat-map
+  (package
+    (name "node-concat-map")
+    (version "0.0.1")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/ljharb/concat-map";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0l30hn1w9incwahjbvv3kzw6p150vjiiji6dlxxawd3krfn7z3k5"))))
+    (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/ljharb/concat-map";)
+    (synopsis "Concatenative map for JavaScript")
+    (description "This package provides a concatenative map for JavaScript.")
+    (license license:expat)))
+
 (define-public node-crx3
   (package
     (name "node-crx3")

Reply via email to