aboutsummaryrefslogtreecommitdiff
path: root/battering/packages/golang-xyz.scm
diff options
context:
space:
mode:
authorHanketsu <hanketsu@egregore.fun>2025-01-31 22:45:44 +0100
committerHanketsu <hanketsu@egregore.fun>2025-06-13 00:04:22 +0200
commit52d0b2135f0158b721c573a2544d93ee39bde7ee (patch)
tree748a738c0d671d91120131c3ff53e7052e796db8 /battering/packages/golang-xyz.scm
parent72d3a9a39a115f580f7a84b5dc9ed5fe9e087aab (diff)
battering: Add go-cel-dev-expr.
* battering/packages/golang-xyz.scm (go-cel-dev-expr): New variable.
Diffstat (limited to 'battering/packages/golang-xyz.scm')
-rw-r--r--battering/packages/golang-xyz.scm26
1 files changed, 26 insertions, 0 deletions
diff --git a/battering/packages/golang-xyz.scm b/battering/packages/golang-xyz.scm
index de880f7..d808015 100644
--- a/battering/packages/golang-xyz.scm
+++ b/battering/packages/golang-xyz.scm
@@ -121,3 +121,29 @@ routines to load and use @code{eBPF} programs from .elf files.")
common protocol buffer types, and the generated gRPC code necessary for
interacting with Google's gRPC APIs.")
(license license:asl2.0)))
+
+(define-public go-cel-dev-expr
+ (package
+ (name "go-cel-dev-expr")
+ (version "0.19.2")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/google/cel-spec")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0hprmgih9z16rl6cyy1794cm6qzwdy7gqqkfhxnhqcha7rbqdr3p"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:import-path "cel.dev/expr"))
+ (propagated-inputs (list go-google-golang-org-protobuf
+ go-google-golang-org-genproto))
+ (home-page "https://cel.dev/expr")
+ (synopsis "Common Expression Language")
+ (description
+ "The Common Expression Language (CEL) implements common semantics for expression
+evaluation, enabling different applications to more easily interoperate.")
+ (license license:asl2.0)))