gnu: Add go-github-com-go-openapi-errors.

* gnu/packages/golang-web.scm (go-github-com-go-openapi-errors): New variable.

Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Change-Id: I3676121428a741124a6a15ef0855de48c882ff4a
This commit is contained in:
Leo Nikkilä 2024-08-24 16:30:42 +01:00 committed by Sharlatan Hellseher
parent 90efc85499
commit 750fcdad28
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -1345,6 +1345,32 @@ (define-public go-github-com-go-ldap-ldap
language.")
(license license:expat)))
(define-public go-github-com-go-openapi-errors
(package
(name "go-github-com-go-openapi-errors")
(version "0.22.0")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/go-openapi/errors")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "0nikzvknkv0nqdy44dfi096lcvkjnpjfrpg1gqlkg5ffccvdnd9s"))))
(build-system go-build-system)
(arguments
(list
#:import-path "github.com/go-openapi/errors"))
(native-inputs
(list go-github-com-stretchr-testify))
(home-page "https://github.com/go-openapi/errors")
(synopsis "OpenAPI toolkit common errors")
(description
"Shared errors and error interface used throughout the various libraries
found in the go-openapi toolkit.")
(license license:asl2.0)))
(define-public go-github-com-go-webauthn-webauthn
(package
(name "go-github-com-go-webauthn-webauthn")