[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
04/23: gnu: node-ieee754: Move package in alphabetical order.
From: |
guix-commits |
Subject: |
04/23: gnu: node-ieee754: 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 49bb13b0a759be4adb69aee8fca57d65a780e128
Author: Nicolas Graves <ngraves@ngraves.fr>
AuthorDate: Sun Feb 4 13:40:14 2024 +0100
gnu: node-ieee754: Move package in alphabetical order.
* gnu/packages/node-xyz.scm (node-ieee754): Move package in alphabetical
order.
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
---
gnu/packages/node-xyz.scm | 52 +++++++++++++++++++++++------------------------
1 file changed, 26 insertions(+), 26 deletions(-)
diff --git a/gnu/packages/node-xyz.scm b/gnu/packages/node-xyz.scm
index 10e065f1da..699e35b96f 100644
--- a/gnu/packages/node-xyz.scm
+++ b/gnu/packages/node-xyz.scm
@@ -301,6 +301,32 @@ projects under a given directory. It uses the gradle
wrapper to execute the
clean task of each project.")
(license license:expat)))
+(define-public node-ieee754
+ (package
+ (name "node-ieee754")
+ (version "1.2.1")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/feross/ieee754")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "19rlg59lavnwsvbblhvrqwinz2wzqlxhddqpwrc3cyqkscjgza7i"))))
+ (build-system node-build-system)
+ (arguments
+ '(#:tests? #f
+ #:phases (modify-phases %standard-phases
+ (add-after 'patch-dependencies 'delete-dependencies
+ (lambda _
+ (delete-dependencies '("airtap" "standard" "tape")))))))
+ (home-page "https://github.com/feross/ieee754")
+ (synopsis "Read/write IEEE754 floating point numbers in Javascript")
+ (description "This package can read and write IEEE754 floating point
+numbers from/to a Buffer or array-like object in Javascript.")
+ (license license:bsd-3)))
+
(define-public node-long-stack-traces
(package
(name "node-long-stack-traces")
@@ -753,32 +779,6 @@ function with browser support.")
particular cross-platform spellings of the PATH environment variable key.")
(license license:expat)))
-(define-public node-ieee754
- (package
- (name "node-ieee754")
- (version "1.2.1")
- (source (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/feross/ieee754")
- (commit (string-append "v" version))))
- (file-name (git-file-name name version))
- (sha256
- (base32
- "19rlg59lavnwsvbblhvrqwinz2wzqlxhddqpwrc3cyqkscjgza7i"))))
- (build-system node-build-system)
- (arguments
- '(#:tests? #f
- #:phases (modify-phases %standard-phases
- (add-after 'patch-dependencies 'delete-dependencies
- (lambda _
- (delete-dependencies '("airtap" "standard" "tape")))))))
- (home-page "https://github.com/feross/ieee754")
- (synopsis "Read/write IEEE754 floating point numbers in Javascript")
- (description "This package can read and write IEEE754 floating point
-numbers from/to a Buffer or array-like object in Javascript.")
- (license license:bsd-3)))
-
(define-public node-inherits
(package
(name "node-inherits")
- branch master updated (2f1ed825af -> f8f0a5954a), guix-commits, 2024/02/18
- 04/23: gnu: node-ieee754: Move package in alphabetical order.,
guix-commits <=
- 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, 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