[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
07/13: gnu: Add node-protocol-buffers-schema.
From: |
guix-commits |
Subject: |
07/13: gnu: Add node-protocol-buffers-schema. |
Date: |
Wed, 20 Jul 2022 11:14:38 -0400 (EDT) |
mbakke pushed a commit to branch master
in repository guix.
commit 13e50d75e879f06465a32edcab623ce1613a7436
Author: Nicolas Graves <ngraves@ngraves.fr>
AuthorDate: Wed Jul 20 11:31:15 2022 +0200
gnu: Add node-protocol-buffers-schema.
* gnu/packages/node-xyz.scm (node-protocol-buffers-schema): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org>
---
gnu/packages/node-xyz.scm | 27 +++++++++++++++++++++++++++
1 file changed, 27 insertions(+)
diff --git a/gnu/packages/node-xyz.scm b/gnu/packages/node-xyz.scm
index 024418b329..97ed294721 100644
--- a/gnu/packages/node-xyz.scm
+++ b/gnu/packages/node-xyz.scm
@@ -230,6 +230,33 @@ random number generator.")
while being as light-weight and simple as possible.")
(license license:expat))))
+(define-public node-protocol-buffers-schema
+ (package
+ (name "node-protocol-buffers-schema")
+ (version "3.6.0")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url
"https://github.com/mafintosh/protocol-buffers-schema")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "0lnckxj14jzsnfxdd5kmlwrac43c214bv8i2g5rdldymlpxzrz1v"))))
+ (build-system node-build-system)
+ (arguments
+ '(#:tests? #f
+ #:phases (modify-phases %standard-phases
+ (replace 'configure
+ (lambda _
+ (invoke "npm" "--offline" "--ignore-scripts" "install"
+ "--production"))))))
+ (home-page "https://github.com/mafintosh/protocol-buffers-schema")
+ (synopsis "Protocol buffers schema parser written in Javascript")
+ (description "This package provides a protocol buffers schema parser
+written in Javascript.")
+ (license license:expat)))
+
(define-public node-stack-trace
;; There have been improvements since the last release.
(let ((commit "4fd379ee78965ce7ce8820b436f1b1b590d5dbcf")
- 08/13: gnu: Add node-resolve-protobuf-schema., (continued)
- 08/13: gnu: Add node-resolve-protobuf-schema., guix-commits, 2022/07/20
- 02/13: gnu: fossil: Add 'release-monitoring-url' property., guix-commits, 2022/07/20
- 06/13: gnu: Add node-yazl., guix-commits, 2022/07/20
- 12/13: gnu: Add node-crx3., guix-commits, 2022/07/20
- 05/13: gnu: Add node-buffer-crc32., guix-commits, 2022/07/20
- 01/13: gnu: smb4k: Update to 3.1.3., guix-commits, 2022/07/20
- 09/13: gnu: Add node-ieee754., guix-commits, 2022/07/20
- 11/13: gnu: Add node-minimist., guix-commits, 2022/07/20
- 13/13: gnu: modifying make-chromium-extension to rely on node-crx3., guix-commits, 2022/07/20
- 03/13: gnu: SQLite: Update to 3.39.1., guix-commits, 2022/07/20
- 07/13: gnu: Add node-protocol-buffers-schema.,
guix-commits <=