[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#68941] [PATCH v2 03/44] gnu: Add node-function-bind.
From: |
Nicolas Graves |
Subject: |
[bug#68941] [PATCH v2 03/44] gnu: Add node-function-bind. |
Date: |
Thu, 8 Feb 2024 01:24:26 +0100 |
* gnu/packages/node-xyz.scm (node-function-bind): New variable.
---
gnu/packages/node-xyz.scm | 32 ++++++++++++++++++++++++++++++++
1 file changed, 32 insertions(+)
diff --git a/gnu/packages/node-xyz.scm b/gnu/packages/node-xyz.scm
index 36fa575049..a8607bd8b4 100644
--- a/gnu/packages/node-xyz.scm
+++ b/gnu/packages/node-xyz.scm
@@ -459,6 +459,38 @@ (define-public node-file-uri-to-path
suitable for use with the @code{fs} module functions.")
(license license:expat)))
+(define-public node-function-bind
+ (package
+ (name "node-function-bind")
+ (version "1.1.1")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/Raynos/function-bind")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "19dcz6b3xs4hfxmjzr6b52r0rj3yziw8spzq4xpwnmggwyks7nm6"))))
+ (build-system node-build-system)
+ (arguments
+ `(#:phases
+ (modify-phases %standard-phases
+ (add-after 'patch-dependencies 'delete-dependencies
+ (lambda args
+ (delete-dependencies
+ '("@ljharb/eslint-config"
+ "covert"
+ "eslint"
+ "jscs"
+ "tape")))))
+ #:tests? #f))
+ (home-page "https://github.com/Raynos/function-bind")
+ (synopsis "Implementation of function.prototype.bind")
+ (description "This package provides a robust implementation of the
+Function.prototype.bind Javascript function.")
+ (license license:expat)))
+
(define-public node-global-gradle-clean
(package
(name "node-global-gradle-clean")
--
2.41.0
- [bug#68941] [PATCH 34/44] gnu: Add node-is-boolean-object., (continued)
- [bug#68941] [PATCH 34/44] gnu: Add node-is-boolean-object., Nicolas Graves, 2024/02/05
- [bug#68941] [PATCH 37/44] gnu: Add node-which-boxed-primitive., Nicolas Graves, 2024/02/05
- [bug#68941] [PATCH 38/44] gnu: Add node-which-collection., Nicolas Graves, 2024/02/05
- [bug#68941] [PATCH 40/44] gnu: Add node-is-date-object., Nicolas Graves, 2024/02/05
- [bug#68941] [PATCH 42/44] gnu: Add node-object-keys., Nicolas Graves, 2024/02/05
- [bug#68941] [PATCH 43/44] gnu: Add node-regexp-prototype-flags., Nicolas Graves, 2024/02/05
- [bug#68941] [PATCH 01/44] guix: build-system: node: Add node-trivial-package helper., Liliana Marie Prikler, 2024/02/06
[bug#68941] [PATCH v2 01/44] guix: build-system: node: Add trivial-node-package helper., Nicolas Graves, 2024/02/07
- [bug#68941] [PATCH v2 03/44] gnu: Add node-function-bind.,
Nicolas Graves <=
- [bug#68941] [PATCH v2 02/44] guix: build-system: node: Add node-is-type-object helper., Nicolas Graves, 2024/02/07
- [bug#68941] [PATCH v2 04/44] gnu: Add node-has-proto., Nicolas Graves, 2024/02/07
- [bug#68941] [PATCH v2 05/44] gnu: Add node-has., Nicolas Graves, 2024/02/07
- [bug#68941] [PATCH v2 06/44] gnu: Add node-has-symbols., Nicolas Graves, 2024/02/07
- [bug#68941] [PATCH v2 07/44] gnu: Add node-has-tostringtag., Nicolas Graves, 2024/02/07
- [bug#68941] [PATCH v2 08/44] gnu: Add node-is-callable., Nicolas Graves, 2024/02/07
- [bug#68941] [PATCH v2 09/44] gnu: Add node-get-intrinsic., Nicolas Graves, 2024/02/07
- [bug#68941] [PATCH v2 19/44] gnu: Add node-is-weakmap., Nicolas Graves, 2024/02/07
- [bug#68941] [PATCH v2 10/44] gnu: Add node-is-symbol., Nicolas Graves, 2024/02/07
- [bug#68941] [PATCH v2 16/44] gnu: Add node-is-regex., Nicolas Graves, 2024/02/07