~ruther/guix-local

eeff8e681f9381ef2d7f2506431824d4948e742c — Patrick Norton 7 months ago cf61132
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 <sharlatanus@gmail.com>
1 files changed, 29 insertions(+), 0 deletions(-)

M gnu/packages/golang-xyz.scm
M gnu/packages/golang-xyz.scm => gnu/packages/golang-xyz.scm +29 -0
@@ 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")