diff options
| author | Ricardo Wurmus <rekado@elephly.net> | 2020-12-27 23:00:20 +0100 |
|---|---|---|
| committer | Ricardo Wurmus <rekado@elephly.net> | 2020-12-27 23:00:55 +0100 |
| commit | 67a608403eb75df3eedd57b966ff70771c99ee9e (patch) | |
| tree | 041f884410b1bcea73b12caf17bb4f10a2568592 | |
| parent | 3e6c114241725a22e4d190c3f9ee15c3c701461a (diff) | |
gnu: Add guile-r6rs-protobuf.
* gnu/packages/guile-xyz.scm (guile-r6rs-protobuf): New variable.
| -rw-r--r-- | gnu/packages/guile-xyz.scm | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm index dfffbfc62fd..6420600d6a6 100644 --- a/gnu/packages/guile-xyz.scm +++ b/gnu/packages/guile-xyz.scm | |||
| @@ -4240,3 +4240,29 @@ uniformly sized, encrypted blocks that can be reassembled using a short | |||
| 4240 | read-capability.") | 4240 | read-capability.") |
| 4241 | (home-page "https://inqlab.net/git/eris.git") | 4241 | (home-page "https://inqlab.net/git/eris.git") |
| 4242 | (license license:gpl3+))) | 4242 | (license license:gpl3+))) |
| 4243 | |||
| 4244 | (define-public guile-r6rs-protobuf | ||
| 4245 | (package | ||
| 4246 | (name "guile-r6rs-protobuf") | ||
| 4247 | (version "0.9") | ||
| 4248 | (source | ||
| 4249 | (origin | ||
| 4250 | (method git-fetch) | ||
| 4251 | (uri (git-reference | ||
| 4252 | (url "https://gitlab.com/joolean/r6rs-protobuf") | ||
| 4253 | (commit (string-append "v" version)))) | ||
| 4254 | (file-name (git-file-name name version)) | ||
| 4255 | (sha256 | ||
| 4256 | (base32 | ||
| 4257 | "1xmn7jlr1xiqgd35klq910p1bnil1iwdvqxkjr3zzml3spy8p2aa")))) | ||
| 4258 | (build-system guile-build-system) | ||
| 4259 | (arguments | ||
| 4260 | `(#:compile-flags '("--r6rs"))) | ||
| 4261 | (inputs | ||
| 4262 | `(("guile" ,guile-3.0))) | ||
| 4263 | (home-page "https://gitlab.com/joolean/r6rs-protobuf/") | ||
| 4264 | (synopsis "Scheme implementation of Protocol Buffers") | ||
| 4265 | (description | ||
| 4266 | "This project provides a pure Scheme implementation of Protocol Buffers, | ||
| 4267 | including parsing and code generation.") | ||
| 4268 | (license license:gpl3+))) | ||
