gnu: node-inherits: Move package in alphabetical order.

* gnu/packages/node-xyz.scm (node-inherits): Move package in alphabetical order.

Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
Nicolas Graves 2024-02-04 13:40:15 +01:00 committed by Sharlatan Hellseher
parent 49bb13b0a7
commit 2fa534a37d
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -327,6 +327,36 @@ (define-public node-ieee754
numbers from/to a Buffer or array-like object in Javascript.")
(license license:bsd-3)))
(define-public node-inherits
(package
(name "node-inherits")
(version "2.0.4")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/isaacs/inherits")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32
"0cpsr5yqwkxpbbbbl0rwk4mcby6zbx841k2zb4c3gb1579i5wq9p"))))
(build-system node-build-system)
(arguments
'(#:phases
(modify-phases %standard-phases
(add-after 'patch-dependencies 'delete-dependencies
(lambda args
(delete-dependencies '("tap")))))
;; FIXME: Tests depend on node-tap
#:tests? #f))
(home-page "https://github.com/isaacs/inherits")
(synopsis "Browser-friendly object inheritance")
(description "This package provides an alternative implementation of
Node's @code{inherits} constructor that can be used in browsers, while
defaulting to Node's implementation otherwise.")
(license license:isc)))
(define-public node-long-stack-traces
(package
(name "node-long-stack-traces")
@ -779,36 +809,6 @@ (define-public node-path-key
particular cross-platform spellings of the PATH environment variable key.")
(license license:expat)))
(define-public node-inherits
(package
(name "node-inherits")
(version "2.0.4")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/isaacs/inherits")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32
"0cpsr5yqwkxpbbbbl0rwk4mcby6zbx841k2zb4c3gb1579i5wq9p"))))
(build-system node-build-system)
(arguments
'(#:phases
(modify-phases %standard-phases
(add-after 'patch-dependencies 'delete-dependencies
(lambda args
(delete-dependencies '("tap")))))
;; FIXME: Tests depend on node-tap
#:tests? #f))
(home-page "https://github.com/isaacs/inherits")
(synopsis "Browser-friendly object inheritance")
(description "This package provides an alternative implementation of
Node's @code{inherits} constructor that can be used in browsers, while
defaulting to Node's implementation otherwise.")
(license license:isc)))
(define-public node-safe-buffer
(package
(name "node-safe-buffer")