guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 36a797d219aad52be092869938c1bef5b81e1e57
Author: Danny Milosavljevic <[email protected]>
AuthorDate: Fri Jan 2 23:51:48 2026 +0100

    gnu: Add node-stack-utils.
    
    * gnu/packages/node-xyz.scm (node-stack-utils): New variable.
    
    Change-Id: Ia9df4d7cbdadfe3f23dd7e8a556b8152c1e36bd4
---
 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 f396af6b8f..8588ea7c31 100644
--- a/gnu/packages/node-xyz.scm
+++ b/gnu/packages/node-xyz.scm
@@ -3854,6 +3854,35 @@ with SQLite3 databases.")
       (description "Get v8 stack traces as an array of CallSite objects.")
       (license license:expat))))
 
+(define-public node-stack-utils
+  (package
+    (name "node-stack-utils")
+    (version "2.0.5")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/tapjs/stack-utils";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1dgzj3x1c257vv3306xd1kg6kvwv3z41a0irzg1lmp0nl0pg744n"))))
+    (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-escape-string-regexp-4))
+    (home-page "https://github.com/tapjs/stack-utils";)
+    (synopsis "Captures and cleans stack traces")
+    (description "This package provides a way to capture and clean stack
+traces for Node.js.")
+    (license license:expat)))
+
 (define-public node-statsd-parser
   (package
     (name "node-statsd-parser")

Reply via email to