guix_mirror_bot pushed a commit to branch go-team
in repository guix.
commit 7bbf30406407414d63afa0394bcb4fa0782d86b9
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Fri Mar 6 13:56:48 2026 +0000
gnu: Add go-github-com-1password-onepassword-sdk-go.
* gnu/packages/golang-web.scm (go-github-com-1password-onepassword-sdk-go):
New variable.
Change-Id: I53eec26354cfd7b0525613eeca03323da6b7c549
---
gnu/packages/golang-web.scm | 36 ++++++++++++++++++++++++++++++++++++
1 file changed, 36 insertions(+)
diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm
index b5a2fb2cb6..bb87a13dfb 100644
--- a/gnu/packages/golang-web.scm
+++ b/gnu/packages/golang-web.scm
@@ -691,6 +691,42 @@ Gemini clients and servers.")
2019.")
(license license:expat)))
+(define-public go-github-com-1password-onepassword-sdk-go
+ (package
+ (name "go-github-com-1password-onepassword-sdk-go")
+ (version "0.4.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/1Password/onepassword-sdk-go")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "058vamq6d2gjhdlng92ygiyhy85c8k9yqaq7p03xj9r6drgrggc9"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:skip-build? #t
+ #:import-path "github.com/1password/onepassword-sdk-go"
+ #:embed-files
+ #~(list "extism-runtime.wasm"
+ "extism-runtime.wasm.version")
+ #:test-subdirs
+ #~(list "internal"))) ;run unitests only
+ (native-inputs
+ (list go-github-com-stretchr-testify))
+ (propagated-inputs
+ (list go-github-com-extism-go-sdk
+ go-github-com-tetratelabs-wazero
+ go-golang-org-x-sys))
+ (home-page "https://github.com/1password/onepassword-sdk-go")
+ (synopsis "1Password Go SDK")
+ (description
+ "This package provides a Go SDK to interact with
+@url{https://1password.com/, 1Password} API.")
+ (license license:expat)))
+
(define-public go-github-com-42wim-httpsig
(package
(name "go-github-com-42wim-httpsig")