[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
10/23: gnu: node-nan: Move package in alphabetical order.
From: |
guix-commits |
Subject: |
10/23: gnu: node-nan: 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 bd6c3acda26f5ba95dc8b3d47c9854d84bbc2c65
Author: Nicolas Graves <ngraves@ngraves.fr>
AuthorDate: Sun Feb 4 13:40:20 2024 +0100
gnu: node-nan: Move package in alphabetical order.
* gnu/packages/node-xyz.scm (node-nan): Move package in alphabetical order.
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
---
gnu/packages/node-xyz.scm | 78 +++++++++++++++++++++++------------------------
1 file changed, 39 insertions(+), 39 deletions(-)
diff --git a/gnu/packages/node-xyz.scm b/gnu/packages/node-xyz.scm
index bc8fd0fb69..250816c04a 100644
--- a/gnu/packages/node-xyz.scm
+++ b/gnu/packages/node-xyz.scm
@@ -487,6 +487,45 @@ random number generator.")
Javascript.")
(license license:expat)))
+(define-public node-nan
+ (package
+ (name "node-nan")
+ (version "2.15.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/nodejs/nan")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "18xslh9va5ld872scrp5y4251ax9s3c6qh0lnl1200lpzbsxy7yd"))))
+ (build-system node-build-system)
+ (arguments
+ `(#:phases
+ (modify-phases %standard-phases
+ (add-after 'patch-dependencies 'delete-dependencies
+ (lambda args
+ (delete-dependencies
+ '("bindings"
+ "commander"
+ "glob"
+ "request"
+ "node-gyp" ;; would be needed for tests
+ "tap"
+ "xtend")))))
+ ;; tests need tap and other dependencies
+ #:tests? #f))
+ (inputs
+ (list node-readable-stream))
+ (home-page "https://github.com/nodejs/nan")
+ (synopsis "Native Abstractions for Node.js")
+ (description "Native Abstractions for Node.js (``NaN'') provides a header
+file filled with macros and utilities for making add-on development for Node.js
+easier across versions. The goal is to provide all logic necessary to develop
+native Node.js addons without having to inspect @code{NODE_MODULE_VERSION}.")
+ (license license:expat)))
+
(define-public node-normalize-path
(package
(name "node-normalize-path")
@@ -979,45 +1018,6 @@ function with browser support.")
particular cross-platform spellings of the PATH environment variable key.")
(license license:expat)))
-(define-public node-nan
- (package
- (name "node-nan")
- (version "2.15.0")
- (source
- (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/nodejs/nan")
- (commit (string-append "v" version))))
- (file-name (git-file-name name version))
- (sha256
- (base32 "18xslh9va5ld872scrp5y4251ax9s3c6qh0lnl1200lpzbsxy7yd"))))
- (build-system node-build-system)
- (arguments
- `(#:phases
- (modify-phases %standard-phases
- (add-after 'patch-dependencies 'delete-dependencies
- (lambda args
- (delete-dependencies
- '("bindings"
- "commander"
- "glob"
- "request"
- "node-gyp" ;; would be needed for tests
- "tap"
- "xtend")))))
- ;; tests need tap and other dependencies
- #:tests? #f))
- (inputs
- (list node-readable-stream))
- (home-page "https://github.com/nodejs/nan")
- (synopsis "Native Abstractions for Node.js")
- (description "Native Abstractions for Node.js (``NaN'') provides a header
-file filled with macros and utilities for making add-on development for Node.js
-easier across versions. The goal is to provide all logic necessary to develop
-native Node.js addons without having to inspect @code{NODE_MODULE_VERSION}.")
- (license license:expat)))
-
(define-public node-addon-api
(package
(name "node-addon-api")
- 05/23: gnu: node-inherits: Move package in alphabetical order., (continued)
- 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
- 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 <=