guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 305e24ac597f13793205e482d507433e7af2b71b
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Tue Sep 9 13:06:29 2025 +0100

    gnu: Add go-cel-dev-expr.
    
    * gnu/packages/golang-build.scm (go-cel-dev-expr): New variable.
    
    Change-Id: I8487c567a6ae8119608b37bd65f8d2f0e0f3a010
---
 gnu/packages/golang-build.scm | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/gnu/packages/golang-build.scm b/gnu/packages/golang-build.scm
index a076d23ae7..445059447d 100644
--- a/gnu/packages/golang-build.scm
+++ b/gnu/packages/golang-build.scm
@@ -60,6 +60,34 @@
 ;;;
 ;;; Code:
 
+(define-public go-cel-dev-expr
+  (package
+    (name "go-cel-dev-expr")
+    (version "0.24.0")
+    (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 "0fzy5njwzg48h1mqbfhczyq6hxmbq3yzdivkjh1x8ipj19v4hvfl"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      #:import-path "cel.dev/expr"))
+    (propagated-inputs
+     (list go-google-golang-org-genproto-googleapis-rpc
+           go-google-golang-org-protobuf))
+    (home-page "https://cel.dev/";)
+    (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)))
+
 (define-public go-github-com-ebitengine-purego
   (package
     (name "go-github-com-ebitengine-purego")

Reply via email to