[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
23/23: gnu: node-safe-stable-stringify: Move package in alphabetical ord
From: |
guix-commits |
Subject: |
23/23: gnu: node-safe-stable-stringify: Move package in alphabetical order. |
Date: |
Sun, 18 Feb 2024 07:56:22 -0500 (EST) |
sharlatan pushed a commit to branch master
in repository guix.
commit f8f0a5954ae5e3880000fd870794300438231e55
Author: Sharlatan Hellseher <sharlatanus@gmail.com>
AuthorDate: Sun Feb 18 12:47:18 2024 +0000
gnu: node-safe-stable-stringify: Move package in alphabetical order.
* gnu/packages/node-xyz.scm (node-safe-stable-stringify): Move package
in alphabetical order.
Change-Id: I00c93906dfde4108a285709afec508864f5e08f7
---
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 5eeefb51c0..79096f7fa3 100644
--- a/gnu/packages/node-xyz.scm
+++ b/gnu/packages/node-xyz.scm
@@ -997,6 +997,35 @@ that behaves the same across different versions.")
resolve all imports.")
(license license:expat)))
+(define-public node-safe-buffer
+ (package
+ (name "node-safe-buffer")
+ (version "5.2.1")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/feross/safe-buffer")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "0r26m0nl41h90ihnl2xf0cqs6z9z7jb87dl5j8yqb7887r9jlbpi"))))
+ (build-system node-build-system)
+ (arguments
+ '(#:phases
+ (modify-phases %standard-phases
+ (add-after 'patch-dependencies 'delete-dependencies
+ (lambda args
+ (delete-dependencies '("tape" "standard")))))
+ #:tests? #f))
+ (home-page "https://github.com/feross/safe-buffer")
+ (synopsis "Buffer creation with explicit semantics")
+ (description "This package provides a drop-in replacement for Node.js
+@code{Buffer} API, which provides newer, explicit constructors (such as
+@code{Buffer.alloc(SIZE)}) in older versions.")
+ (license license:expat)))
+
(define-public node-safe-stable-stringify
(package
(name "node-safe-stable-stringify")
@@ -1039,35 +1068,6 @@ Optional custom circular values, deterministic behavior
or strict JSON
compatibility check.")
(license license:expat)))
-(define-public node-safe-buffer
- (package
- (name "node-safe-buffer")
- (version "5.2.1")
- (source
- (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/feross/safe-buffer")
- (commit (string-append "v" version))))
- (file-name (git-file-name name version))
- (sha256
- (base32
- "0r26m0nl41h90ihnl2xf0cqs6z9z7jb87dl5j8yqb7887r9jlbpi"))))
- (build-system node-build-system)
- (arguments
- '(#:phases
- (modify-phases %standard-phases
- (add-after 'patch-dependencies 'delete-dependencies
- (lambda args
- (delete-dependencies '("tape" "standard")))))
- #:tests? #f))
- (home-page "https://github.com/feross/safe-buffer")
- (synopsis "Buffer creation with explicit semantics")
- (description "This package provides a drop-in replacement for Node.js
-@code{Buffer} API, which provides newer, explicit constructors (such as
-@code{Buffer.alloc(SIZE)}) in older versions.")
- (license license:expat)))
-
(define-public node-segfault-handler
(package
(name "node-segfault-handler")
- 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, 2024/02/18
- 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 <=
- 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
- 15/23: gnu: node-ms: Move package in alphabetical order., guix-commits, 2024/02/18
- 17/23: gnu: packages: node-xyz: Add alphatical order header., guix-commits, 2024/02/18