[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
28/42: gnu: Add node-segfault-handler.
From: |
guix-commits |
Subject: |
28/42: gnu: Add node-segfault-handler. |
Date: |
Sat, 8 Jan 2022 20:09:32 -0500 (EST) |
lilyp pushed a commit to branch master
in repository guix.
commit db82f64cf785474276283298ecb803a280b41091
Author: Philip McGrath <philip@philipmcgrath.com>
AuthorDate: Sat Jan 8 03:42:16 2022 -0500
gnu: Add node-segfault-handler.
* gnu/packages/node-xyz.scm (node-segfault-handler): New variable.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
---
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 0e621a2e52..c4c88e8df2 100644
--- a/gnu/packages/node-xyz.scm
+++ b/gnu/packages/node-xyz.scm
@@ -893,3 +893,32 @@ suitable for use with the @code{fs} module functions.")
(description "This package provides a helper module to locate native
addons in a wide array of potential locations.")
(license license:expat)))
+
+(define-public node-segfault-handler
+ (package
+ (name "node-segfault-handler")
+ (version "1.3.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/ddopson/node-segfault-handler")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "07nbw35wvrr18kmh8f388v4k5mpjgyy0260bx0xzjdv795i3xvfv"))))
+ (native-inputs
+ (list python))
+ (inputs
+ (list node-bindings node-nan))
+ (build-system node-build-system)
+ (arguments
+ ;; there are no tests
+ `(#:tests? #f))
+ (home-page "https://github.com/ddopson/node-segfault-handler")
+ (synopsis "Catches @code{SIGSEGV} and prints diagnostic information")
+ (description "This package is a tool for debugging Node.js C/C++ native
+code modules and getting stack traces when things go wrong. If a
+@code{SIGSEGV} signal is raised, the module will print a native stack trace to
+both @file{stderr} and to a timestamped file.")
+ (license license:bsd-3)))
- 02/42: guix: node-build-system: Add implicit libuv input., (continued)
- 02/42: guix: node-build-system: Add implicit libuv input., guix-commits, 2022/01/08
- 05/42: guix: node-build-system: Add 'delete-dependencies' helper function., guix-commits, 2022/01/08
- 08/42: gnu: node-binary-search-bootstrap: Use 'delete-dependencies'., guix-commits, 2022/01/08
- 09/42: gnu: node-debug-bootstrap: Use 'delete-dependencies'., guix-commits, 2022/01/08
- 10/42: gnu: node-llparse-builder-bootstrap: Use 'delete-dependencies'., guix-commits, 2022/01/08
- 13/42: gnu: node-semver: Use 'delete-dependencies'., guix-commits, 2022/01/08
- 14/42: gnu: node-wrappy: Use 'delete-dependencies'., guix-commits, 2022/01/08
- 01/42: guix: node-build-system: Add delete-lockfiles phase., guix-commits, 2022/01/08
- 11/42: gnu: node-llparse-frontend-bootstrap: Use 'delete-dependencies'., guix-commits, 2022/01/08
- 24/42: gnu: Add node-addon-api., guix-commits, 2022/01/08
- 28/42: gnu: Add node-segfault-handler.,
guix-commits <=
- 26/42: gnu: Add node-file-uri-to-path., guix-commits, 2022/01/08
- 29/42: gnu: Add node-ms., guix-commits, 2022/01/08
- 31/42: gnu: Add node-serialport-binding-abstract., guix-commits, 2022/01/08
- 32/42: gnu: Add node-serialport-parser-delimiter., guix-commits, 2022/01/08
- 04/42: guix: node-build-system: Add avoid-node-gyp-rebuild phase., guix-commits, 2022/01/08
- 03/42: guix: node-build-system: Add JSON utilities., guix-commits, 2022/01/08
- 06/42: gnu: node-semver-bootstrap: Use 'delete-dependencies'., guix-commits, 2022/01/08
- 07/42: gnu: node-ms-bootstrap: Use 'delete-dependencies'., guix-commits, 2022/01/08
- 12/42: gnu: node-llparse-bootstrap: Use 'delete-dependencies'., guix-commits, 2022/01/08
- 15/42: gnu: node-once: Use 'delete-dependencies'., guix-commits, 2022/01/08