[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
05/23: gnu: node-inherits: Move package in alphabetical order.
From: |
guix-commits |
Subject: |
05/23: gnu: node-inherits: Move package in alphabetical order. |
Date: |
Sun, 18 Feb 2024 07:56:20 -0500 (EST) |
sharlatan pushed a commit to branch master
in repository guix.
commit 2fa534a37d1c5073d563591f917379b209f625cc
Author: Nicolas Graves <ngraves@ngraves.fr>
AuthorDate: Sun Feb 4 13:40:15 2024 +0100
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>
---
gnu/packages/node-xyz.scm | 60 +++++++++++++++++++++++------------------------
1 file changed, 30 insertions(+), 30 deletions(-)
diff --git a/gnu/packages/node-xyz.scm b/gnu/packages/node-xyz.scm
index 699e35b96f..37a1c57764 100644
--- a/gnu/packages/node-xyz.scm
+++ b/gnu/packages/node-xyz.scm
@@ -327,6 +327,36 @@ clean task of each project.")
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 @@ function with browser support.")
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")
- 01/23: gnu: node-bindings: Move package in alphabetical order., (continued)
- 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, 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 <=
- 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
- 19/23: gnu: node-path-key: Move package in alphabetical order., guix-commits, 2024/02/18
- 18/23: gnu: node-semver: Move package in alphabetical order., guix-commits, 2024/02/18
- 03/23: gnu: node-once: Move package in alphabetical order., guix-commits, 2024/02/18
- 11/23: gnu: node-addon-api: Move package in alphabetical order., guix-commits, 2024/02/18
- 10/23: gnu: node-nan: Move package in alphabetical order., guix-commits, 2024/02/18