From eeff8e681f9381ef2d7f2506431824d4948e742c Mon Sep 17 00:00:00 2001 From: Patrick Norton Date: Mon, 24 Nov 2025 11:24:40 -0500 Subject: [PATCH] gnu: Add go-github-com-abbot-go-http-auth * gnu/packages/golang-xyz.scm (go-github-com-abbot-go-http-auth): New variable. Change-Id: I6bffbddc29581c8a4e1f666f4a515b233a8a53a5 Signed-off-by: Sharlatan Hellseher --- gnu/packages/golang-xyz.scm | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index b3598261c0..a48103c5b1 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -889,6 +889,35 @@ scripts (writing systems). Languages are represented by a defined list of constants, while scripts are represented by RangeTable.") (license license:expat))) +(define-public go-github-com-abbot-go-http-auth + (package + (name "go-github-com-abbot-go-http-auth") + (version "0.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/abbot/go-http-auth") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0phsnkfq1vy9b7nqsqqf0llvm7kad0nkmcrnlbwarci3p5p083qf")))) + (build-system go-build-system) + (arguments + (list + ;; `go vet' reports bad printf statements + #:test-flags + #~(list "-vet=off") + #:import-path "github.com/abbot/go-http-auth")) + (propagated-inputs + (list go-golang-org-x-crypto + go-golang-org-x-net)) + (home-page "https://github.com/abbot/go-http-auth") + (synopsis "HTTP Authentication implementation in Golang") + (description + "This package is an implementation of HTTP Basic and HTTP Digest authentication.") + (license license:asl2.0))) + (define-public go-github-com-aclements-go-perfevent (package (name "go-github-com-aclements-go-perfevent")