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>
This commit is contained in:
parent
12e0556369
commit
db82f64cf7
1 changed files with 29 additions and 0 deletions
|
@ -893,3 +893,32 @@ suitable for use with the @code{fs} module functions.")
|
||||||
(description "This package provides a helper module to locate native
|
(description "This package provides a helper module to locate native
|
||||||
addons in a wide array of potential locations.")
|
addons in a wide array of potential locations.")
|
||||||
(license license:expat)))
|
(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)))
|
||||||
|
|
Reference in a new issue