summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorRoman Scherer <roman@burningswell.com>2025-12-24 17:32:52 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2026-04-08 23:27:35 +0100
commit410c7225e99bc0177e38fbc0964fca121f5394f6 (patch)
tree191088f78603854d44ff6289abb9360dac28ea0e /gnu
parent3f10d87e10d771c61ad2a71969c2f361fa2289f6 (diff)
gnu: Add go-github-com-henvic-httpretty.
* gnu/packages/golang-web.scm (go-github-com-henvic-httpretty): New variable. Relates-to: https://codeberg.org/guix/guix/issues/5190 Change-Id: I589768da63713d5a88ce326be97bc12d6e7a4813 Reviewed-by: Johannes Christ <jc@jchri.st> Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/golang-xyz.scm27
1 files changed, 27 insertions, 0 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 9812fc4df5..b3722447c0 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -12975,6 +12975,33 @@ anniversaries.")
"This package implements directed acyclic graphs (DAGs).")
(license license:bsd-3)))
+(define-public go-github-com-henvic-httpretty
+ (package
+ (name "go-github-com-henvic-httpretty")
+ (version "0.1.4")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/henvic/httpretty")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1a384k5w8az9b7162h8ma16yinn4q348zncfjqh4sfkss4r0iw2h"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:import-path "github.com/henvic/httpretty"))
+ (propagated-inputs
+ (list go-golang-org-x-tools))
+ (home-page "https://github.com/henvic/httpretty")
+ (synopsis "HTTP pretty-printer for Go")
+ (description
+ "This package prints HTTP requests and responses in a pretty format on
+the terminal. It can be used both on the client-side and server-side for
+debugging and development purposes.")
+ (license license:expat)))
+
(define-public go-github-com-hhrutter-tiff
(package
(name "go-github-com-hhrutter-tiff")