diff options
Diffstat (limited to 'battering/packages')
-rw-r--r-- | battering/packages/golang-xyz.scm | 26 |
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))) |