From 750fcdad2842ae3be18e37ea61c184f1612d5618 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Leo=20Nikkil=C3=A4?= Date: Sat, 24 Aug 2024 16:30:42 +0100 Subject: [PATCH] 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 Change-Id: I3676121428a741124a6a15ef0855de48c882ff4a --- gnu/packages/golang-web.scm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm index fbdef8a35f..d12bc14b67 100644 --- a/gnu/packages/golang-web.scm +++ b/gnu/packages/golang-web.scm @@ -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")