diff options
author | Nicolas Graves <ngraves@ngraves.fr> | 2022-07-20 12:15:12 +0200 |
---|---|---|
committer | Marius Bakke <marius@gnu.org> | 2022-07-20 16:50:08 +0200 |
commit | c41ac67cfdda891dee6eaeee71ffbf424b7747ba (patch) | |
tree | 59c61d9b16a724c747b957dbf1a5ff68c0a83583 /gnu/packages | |
parent | 9b8567e29390aa1e8cb842138de879e5de4378b0 (diff) |
gnu: Add node-pbf.
* gnu/packages/node-xyz.scm (node-pbf): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org>
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/node-xyz.scm | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/gnu/packages/node-xyz.scm b/gnu/packages/node-xyz.scm index 0deb680669..f60873b925 100644 --- a/gnu/packages/node-xyz.scm +++ b/gnu/packages/node-xyz.scm @@ -230,6 +230,38 @@ random number generator.") 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 _ + (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. +It 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") |