1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-06 21:20:33 +02:00

gnu: Add node-concat-map.

* gnu/packages/node-xyz.scm (node-concat-map): New variable.

Change-Id: I4b5c808f640e2c8e3985b56bffdc52663383b1f5
This commit is contained in:
Danny Milosavljevic
2026-01-02 23:46:44 +01:00
parent b12a400d53
commit eb5d8bc68b

View File

@@ -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")