gnu: Add go-go-starlark-net.

* gnu/packages/golang-web.scm (go-go-starlark-net): New variable.

Change-Id: Iee2a6bf63f303af1020aaaa6fb029b54c1d0916d
This commit is contained in:
Sharlatan Hellseher 2025-07-10 14:21:50 +01:00
parent 7bddfd2e4b
commit e4171772e3
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -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")