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-02-01 17:47:16 +0100
commitd4ee0c737b75c33f8017d55365b43c465e36c0d0 (patch)
tree1074e61c9bf776d978a5e0e5099648f6b8ed821a /battering/packages/golang-xyz.scm
parentf77a6712f8a9016fa89a6e7f4c96dfad33a9fec6 (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)))