mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-13 14:40:21 -05:00
gnu: Add guile-r6rs-protobuf.
* gnu/packages/guile-xyz.scm (guile-r6rs-protobuf): New variable.
This commit is contained in:
parent
3e6c114241
commit
67a608403e
1 changed files with 26 additions and 0 deletions
|
@ -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+)))
|
||||
|
|
Loading…
Reference in a new issue