sharlatan pushed a commit to branch go-team
in repository guix.
commit 35f32e8b6a2b076e56d897753015668a59796366
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Thu Feb 20 14:48:32 2025 +0000
gnu: Add go-github-com-justinas-alice.
* gnu/packages/golang-web.scm (go-github-com-justinas-alice): New variable.
Change-Id: I7e5ae210eecfe3930c5729f20013386cff930a59
---
gnu/packages/golang-web.scm | 23 +++++++++++++++++++++++
1 file changed, 23 insertions(+)
diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm
index 5e75339d9f..365d205d96 100644
--- a/gnu/packages/golang-web.scm
+++ b/gnu/packages/golang-web.scm
@@ -4718,6 +4718,29 @@ jsoniter and variable type declarations (if any).
jsoniter interfaces gives
router.")
(license license:bsd-3)))
+(define-public go-github-com-justinas-alice
+ (package
+ (name "go-github-com-justinas-alice")
+ (version "1.2.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/justinas/alice")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "19l88vi13rqyhjl100zd5z26ghy4iln74kqfd3hsmd2nydz7manz"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:import-path "github.com/justinas/alice"))
+ (home-page "https://github.com/justinas/alice")
+ (synopsis "Middleware chaining for Golang")
+ (description
+ "Package alice provides a convenient way to chain HTTP handlers.")
+ (license license:expat)))
+
(define-public go-github-com-kolo-xmlrpc
(package
(name "go-github-com-kolo-xmlrpc")