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
This commit is contained in:
Sharlatan Hellseher 2024-02-18 12:47:18 +00:00
parent 3fec61b1c9
commit f8f0a5954a
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -997,6 +997,35 @@ (define-public node-resolve-protobuf-schema
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 @@ (define-public node-safe-stable-stringify
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")