[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#55962] [PATCH] gnu: Add node-pbf.
From: |
Nicolas Graves |
Subject: |
[bug#55962] [PATCH] gnu: Add node-pbf. |
Date: |
Wed, 20 Jul 2022 12:15:12 +0200 |
* gnu/packages/node-xyz.scm (node-pbf): New variable.
---
gnu/packages/node-xyz.scm | 33 +++++++++++++++++++++++++++++++++
1 file changed, 33 insertions(+)
diff --git a/gnu/packages/node-xyz.scm b/gnu/packages/node-xyz.scm
index 20325ebbc6..f124e2ebfb 100644
--- a/gnu/packages/node-xyz.scm
+++ b/gnu/packages/node-xyz.scm
@@ -232,6 +232,39 @@ (define-public node-oop
while being as light-weight and simple as possible.")
(license license:expat))))
+(define-public node-pbf
+ (package
+ (name "node-pbf")
+ (version "3.2.1")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/mapbox/pbf")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "1r8xs787ix79yr0vrwrizdml9h7cmxjrzhvnhkj784ac5f8nv5j7"))))
+ (build-system node-build-system)
+ (arguments
+ '(#:tests? #f
+ #:phases
+ (modify-phases %standard-phases
+ (replace 'configure
+ (lambda* (#:key inputs #:allow-other-keys)
+ (invoke "npm" "--offline"
+ "--ignore-scripts" "install" "--production"))))))
+ (inputs (list node-ieee754 node-resolve-protobuf-schema))
+ (home-page "https://github.com/mapbox/pbf")
+ (synopsis "Decode and encode protocol buffers in Javascript")
+ (description "This package is a low-level, fast and lightweight JavaScript
+library for decoding and encoding protocol buffers, a compact binary format
+for structured data serialization. Works both in Node and the browser.
+Supports lazy decoding and detailed customization of the reading/writing
+code.")
+ (license license:bsd-3)))
+
(define-public node-protocol-buffers-schema
(package
(name "node-protocol-buffers-schema")
--
2.37.0
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [bug#55962] [PATCH] gnu: Add node-pbf.,
Nicolas Graves <=