guix_mirror_bot pushed a commit to branch master
in repository guix.

commit e4171772e328bae18b04aede46c8bbd9e863121e
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Thu Jul 10 14:21:50 2025 +0100

    gnu: Add go-go-starlark-net.
    
    * gnu/packages/golang-web.scm (go-go-starlark-net): New variable.
    
    Change-Id: Iee2a6bf63f303af1020aaaa6fb029b54c1d0916d
---
 gnu/packages/golang-web.scm | 34 ++++++++++++++++++++++++++++++++++
 1 file changed, 34 insertions(+)

diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm
index 54c7fb5471..6be368f443 100644
--- a/gnu/packages/golang-web.scm
+++ b/gnu/packages/golang-web.scm
@@ -11173,6 +11173,40 @@ metrics SDK.")
      "Package trace provides an implementation of the tracing part of the
 OpenTelemetry API.")))
 
+(define-public go-go-starlark-net
+  (package
+    (name "go-go-starlark-net")
+    (version "0.0.0-20250701195324-d457b4515e0e")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+              (url "https://github.com/google/starlark-go";)
+              (commit (go-version->git-ref version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1cy6xxf2hjvd9b0wbdybn46h3qrkhxy9l11mzbrs21y0i1hlyiji"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      #:skip-build? #t
+      #:import-path "go.starlark.net"
+      ;; Intfallback subcommand failed: fork/exec /bin/sh: no such file or
+      ;; directory.
+      #:test-flags #~(list "-skip" "TestIntFallback")))
+    (propagated-inputs
+     (list go-github-com-chzyer-readline
+           go-github-com-google-go-cmp
+           go-golang-org-x-sys
+           go-golang-org-x-term
+           go-google-golang-org-protobuf))
+    (home-page "https://github.com/google/starlark-go";)
+    (synopsis "Starlark configuration language, implemented in Golang")
+    (description
+     "This package provides Starlark - a dialect of Python intended for use as
+a configuration language.")
+    (license license:bsd-3)))
+
 (define-public go-goji-io
   (package
     (name "go-goji-io")

Reply via email to