diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-10 14:21:50 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-22 20:13:08 +0100 |
commit | e4171772e328bae18b04aede46c8bbd9e863121e (patch) | |
tree | 103fcf0744357bc52a1a0366c24e491ed22032c9 | |
parent | 7bddfd2e4bfe2d79e51ebc4125319bee52fec768 (diff) |
gnu: Add go-go-starlark-net.
* gnu/packages/golang-web.scm (go-go-starlark-net): New variable.
Change-Id: Iee2a6bf63f303af1020aaaa6fb029b54c1d0916d
-rw-r--r-- | gnu/packages/golang-web.scm | 34 |
1 files changed, 34 insertions, 0 deletions
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") |