gnu: Add node-resolve-protobuf-schema.

* gnu/packages/node-xyz.scm (node-resolve-protobuf-schema): New variable.

Signed-off-by: Marius Bakke <marius@gnu.org>
This commit is contained in:
Nicolas Graves 2022-07-20 11:34:19 +02:00 committed by Marius Bakke
parent 13e50d75e8
commit 9ae6dd7aa5
No known key found for this signature in database
GPG key ID: A2A06DF2A33A54FA

View file

@ -257,6 +257,35 @@ (define-public node-protocol-buffers-schema
written in Javascript.") written in Javascript.")
(license license:expat))) (license license:expat)))
(define-public node-resolve-protobuf-schema
(package
(name "node-resolve-protobuf-schema")
(version "2.1.0")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/mafintosh/resolve-protobuf-schema")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32
"0zxavr0b2yz9xzp6zlsg5g09i0a6zqb24j12rdvfgph6wd4mzk40"))))
(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-protocol-buffers-schema))
(home-page "https://github.com/mafintosh/resolve-protobuf-schema")
(synopsis "Resolve protobuf imports")
(description
"This package can read a protobuf schema from the disk, parse it and
resolve all imports.")
(license license:expat)))
(define-public node-stack-trace (define-public node-stack-trace
;; There have been improvements since the last release. ;; There have been improvements since the last release.
(let ((commit "4fd379ee78965ce7ce8820b436f1b1b590d5dbcf") (let ((commit "4fd379ee78965ce7ce8820b436f1b1b590d5dbcf")