gnu: Add guile-r6rs-protobuf.

* gnu/packages/guile-xyz.scm (guile-r6rs-protobuf): New variable.
This commit is contained in:
Ricardo Wurmus 2020-12-27 23:00:20 +01:00
parent 3e6c114241
commit 67a608403e
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -4240,3 +4240,29 @@ (define-public guile-eris
read-capability.")
(home-page "https://inqlab.net/git/eris.git")
(license license:gpl3+)))
(define-public guile-r6rs-protobuf
(package
(name "guile-r6rs-protobuf")
(version "0.9")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://gitlab.com/joolean/r6rs-protobuf")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32
"1xmn7jlr1xiqgd35klq910p1bnil1iwdvqxkjr3zzml3spy8p2aa"))))
(build-system guile-build-system)
(arguments
`(#:compile-flags '("--r6rs")))
(inputs
`(("guile" ,guile-3.0)))
(home-page "https://gitlab.com/joolean/r6rs-protobuf/")
(synopsis "Scheme implementation of Protocol Buffers")
(description
"This project provides a pure Scheme implementation of Protocol Buffers,
including parsing and code generation.")
(license license:gpl3+)))