diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-03-06 12:59:40 +0000 |
|---|---|---|
| committer | Andreas Enge <andreas@enge.fr> | 2026-03-18 14:07:30 +0100 |
| commit | d93cb137978fa4a8fdb6b6125ef2e3fc6ccf975d (patch) | |
| tree | 065fb679cca26a3566b5a1dc31fb920cda4fdfc7 | |
| parent | 27259a3d98f5d1a995c662aa60532db8b9b41d07 (diff) | |
gnu: Add go-github-com-dylibso-observe-sdk-go.
* gnu/packages/golang-web.scm (go-github-com-dylibso-observe-sdk-go): New variable.
Change-Id: I17e9f059c1974f4090cd8f9f0e82e6e4f91e81c6
| -rw-r--r-- | gnu/packages/golang-web.scm | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm index c540f640844..0a55d8d467e 100644 --- a/gnu/packages/golang-web.scm +++ b/gnu/packages/golang-web.scm @@ -4446,6 +4446,41 @@ Values for HTTP as defined in @url{https://rfc-editor.org/rfc/rfc9651.html, RFC 9651}.") (license license:bsd-3))) +(define-public go-github-com-dylibso-observe-sdk-go + (package + (name "go-github-com-dylibso-observe-sdk-go") + (version "0.0.0-20240828172851-9145d8ad07e1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/dylibso/observe-sdk") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1cx0zdfp6jqw9ih4h0m5556jnz9i0yvz4p1crvmbm7vbyfgklmmv")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/dylibso/observe-sdk/go" + #:unpack-path "github.com/dylibso/observe-sdk")) + (propagated-inputs + (list go-github-com-ianlancetaylor-demangle + go-github-com-tetratelabs-wabin + go-github-com-tetratelabs-wazero + go-go-opentelemetry-io-otel-exporters-otlp-otlptrace + go-go-opentelemetry-io-otel-exporters-otlp-otlptrace-otlptracegrpc + go-go-opentelemetry-io-otel-exporters-otlp-otlptrace-otlptracehttp + go-go-opentelemetry-io-proto-otlp + go-google-golang-org-protobuf)) + (home-page "https://github.com/dylibso/observe-sdk") + (synopsis "Continuous runtime observablity SDKs to monitor WebAssembly code") + (description + "This package provides a Golang implementatin of observability SDKs for +WebAssembly, enabling continuous monitoring of WebAssembly code as it executes +within a runtime.") + (license license:asl2.0))) + (define-public go-github-com-eggsampler-acme-v3 (package (name "go-github-com-eggsampler-acme-v3") |
