[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#47282] [PATCH 07/13] gnu: node: Add node-binary-search-bootstrap.
From: |
Jelle Licht |
Subject: |
[bug#47282] [PATCH 07/13] gnu: node: Add node-binary-search-bootstrap. |
Date: |
Sat, 20 Mar 2021 15:59:19 +0100 |
* gnu/packages/node.scm (node-binary-search-bootstrap): New package.
---
gnu/packages/node.scm | 32 ++++++++++++++++++++++++++++++++
1 file changed, 32 insertions(+)
diff --git a/gnu/packages/node.scm b/gnu/packages/node.scm
index 6cc8a2d0d1..b7937b29f4 100644
--- a/gnu/packages/node.scm
+++ b/gnu/packages/node.scm
@@ -281,6 +281,38 @@ devices.")
milliseconds.")
(license license:expat)))
+(define-public node-binary-search-bootstrap
+ (package
+ (name "node-binary-search")
+ (version "1.3.6")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/darkskyapp/binary-search.git")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "1xr2msdc143cd3xwgq7n3rhzy7j8wrnaidxl0r6l6b6g3mpbpjig"))))
+ (build-system node-build-system)
+ (arguments
+ `(#:node ,node-bootstrap
+ #:tests? #f
+ #:phases
+ (modify-phases
+ %standard-phases
+ (delete 'configure)
+ (delete 'build))))
+ (home-page
+ "https://github.com/darkskyapp/binary-search#readme")
+ (properties '((hidden? . #t)))
+ (synopsis
+ "Tiny binary search function with comparators")
+ (description
+ "This package is a binary search function for @code{Node.js}.")
+ (license license:cc0)))
+
(define-public libnode
(package/inherit node
(name "libnode")
--
2.31.0
- [bug#47282] [PATCH 00/13] node going forward, Jelle Licht, 2021/03/20
- [bug#47282] [PATCH 01/13] build-system: Rewrite node build system., Jelle Licht, 2021/03/20
- [bug#47282] [PATCH 02/13] gnu: Add libuv-node, Jelle Licht, 2021/03/20
- [bug#47282] [PATCH 07/13] gnu: node: Add node-binary-search-bootstrap.,
Jelle Licht <=
- [bug#47282] [PATCH 05/13] gnu: node: Add node-semver-bootstrap., Jelle Licht, 2021/03/20
- [bug#47282] [PATCH 11/13] gnu: node: Add node-llparse-bootstrap., Jelle Licht, 2021/03/20
- [bug#47282] [PATCH 04/13] gnu: node: Add node-bootstrap., Jelle Licht, 2021/03/20
- [bug#47282] [PATCH 03/13] gnu: node: Use license prefix., Jelle Licht, 2021/03/20
- [bug#47282] [PATCH 10/13] gnu: node: Add node-llparse-frontend-bootstrap., Jelle Licht, 2021/03/20
- [bug#47282] [PATCH 12/13] gnu: node: Add llhttp-bootstrap., Jelle Licht, 2021/03/20
- [bug#47282] [PATCH 13/13] gnu: node: Add node-lts, Jelle Licht, 2021/03/20
- [bug#47282] [PATCH 08/13] gnu: node: Add node-debug-bootstrap., Jelle Licht, 2021/03/20
- [bug#47282] [PATCH 06/13] gnu: node: Add node-ms-bootstrap., Jelle Licht, 2021/03/20
- [bug#47282] [PATCH 09/13] gnu: node: Add node-llparse-builder-bootstrap., Jelle Licht, 2021/03/20