[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
14/23: gnu: node-segfault-handler: Move package in alphabetical order.
From: |
guix-commits |
Subject: |
14/23: gnu: node-segfault-handler: Move package in alphabetical order. |
Date: |
Sun, 18 Feb 2024 07:56:21 -0500 (EST) |
sharlatan pushed a commit to branch master
in repository guix.
commit 8cc24d344a87d552367143267430b5ca4a29c644
Author: Nicolas Graves <ngraves@ngraves.fr>
AuthorDate: Sun Feb 4 13:40:24 2024 +0100
gnu: node-segfault-handler: Move package in alphabetical order.
* gnu/packages/node-xyz.scm (node-segfault-handler): Move package in
alphabetical order.
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
---
gnu/packages/node-xyz.scm | 58 +++++++++++++++++++++++------------------------
1 file changed, 29 insertions(+), 29 deletions(-)
diff --git a/gnu/packages/node-xyz.scm b/gnu/packages/node-xyz.scm
index 1afbf6deac..cc61c0b5fe 100644
--- a/gnu/packages/node-xyz.scm
+++ b/gnu/packages/node-xyz.scm
@@ -963,6 +963,35 @@ compatibility check.")
@code{Buffer.alloc(SIZE)}) in older versions.")
(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)))
+
(define-public node-sqlite3
(package
(name "node-sqlite3")
@@ -1283,35 +1312,6 @@ function with browser support.")
particular cross-platform spellings of the PATH environment variable key.")
(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)))
-
(define-public node-ms
(package
(name "node-ms")
- branch master updated (2f1ed825af -> f8f0a5954a), guix-commits, 2024/02/18
- 04/23: gnu: node-ieee754: Move package in alphabetical order., guix-commits, 2024/02/18
- 02/23: gnu: node-util-deprecate: Move package in alphabetical order., guix-commits, 2024/02/18
- 01/23: gnu: node-bindings: Move package in alphabetical order., guix-commits, 2024/02/18
- 09/23: gnu: node-irc and node-irc-colors: Move in alphabetical order., guix-commits, 2024/02/18
- 16/23: gnu: node-debug: Move package in alphabetical order., guix-commits, 2024/02/18
- 14/23: gnu: node-segfault-handler: Move package in alphabetical order.,
guix-commits <=
- 20/23: gnu: node-serialport-*: Move packages in alphabetical order., guix-commits, 2024/02/18
- 23/23: gnu: node-safe-stable-stringify: Move package in alphabetical order., guix-commits, 2024/02/18
- 12/23: gnu: node-sqlite3: Move package in alphabetical order., guix-commits, 2024/02/18
- 21/23: gnu: node-xyz: Add a note to the end of the file., guix-commits, 2024/02/18
- 06/23: gnu: node-safe-buffer: Move package in alphabetical order., guix-commits, 2024/02/18
- 22/23: gnu: node-irc-colors: Move package in alphabetical order., guix-commits, 2024/02/18
- 05/23: gnu: node-inherits: Move package in alphabetical order., guix-commits, 2024/02/18
- 07/23: gnu: node-string-decoder: Move package in alphabetical order., guix-commits, 2024/02/18
- 13/23: gnu: node-file-uri-to-path: Move package in alphabetical order., guix-commits, 2024/02/18
- 08/23: gnu: node-readable-stream: Move package in alphabetical order., guix-commits, 2024/02/18