guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/09: gnu: Add node-long-stack-traces.


From: guix-commits
Subject: 02/09: gnu: Add node-long-stack-traces.
Date: Mon, 20 Jan 2020 02:43:19 -0500 (EST)

efraim pushed a commit to branch master
in repository guix.

commit 2f2e7be944c80d5fdb7fcab90ecf2ddf4b80c416
Author: Efraim Flashner <address@hidden>
AuthorDate: Mon Jan 13 22:04:40 2020 +0200

    gnu: Add node-long-stack-traces.
    
    * gnu/packages/node-xyz.scm (node-long-stack-traces): New variable.
---
 gnu/packages/node-xyz.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/node-xyz.scm b/gnu/packages/node-xyz.scm
index 896c062..a8285eb 100644
--- a/gnu/packages/node-xyz.scm
+++ b/gnu/packages/node-xyz.scm
@@ -44,3 +44,26 @@
 @code{process.env}, @code{window.name}, @code{location.hash} and
 @code{localStorage} fallbacks.")
     (license license:expat)))
+
+
+(define-public node-long-stack-traces
+  (package
+    (name "node-long-stack-traces")
+    (version "0.1.2")
+    (source
+      (origin
+        (method git-fetch)
+        (uri (git-reference
+               (url "https://github.com/tlrobinson/long-stack-traces";)
+               (commit (string-append "v" version))))
+        (file-name (git-file-name name version))
+        (sha256
+         (base32
+          "0famwsyc6xawi30v25zi65d8fhbvlvh976bqydf1dqn5gz200cl3"))))
+    (build-system node-build-system)
+    (arguments '(#:tests? #f)) ; No tests.
+    (home-page "https://github.com/tlrobinson/long-stack-traces";)
+    (synopsis "Long stacktraces implemented in user-land JavaScript")
+    (description "This package provides long stacktraces for V8 implemented in
+user-land JavaScript.")
+    (license license:expat))) ; in README



reply via email to

[Prev in Thread] Current Thread [Next in Thread]