guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/09: gnu: Add go-github-com-hashicorp-go-cleanhttp.


From: guix-commits
Subject: 01/09: gnu: Add go-github-com-hashicorp-go-cleanhttp.
Date: Thu, 21 Mar 2024 19:51:31 -0400 (EDT)

sharlatan pushed a commit to branch master
in repository guix.

commit 8d27fe61d7f1a2bed0367fa861e4cae1f2f1546d
Author: Troy Figiel <troy@troyfigiel.com>
AuthorDate: Sun Mar 10 16:37:03 2024 +0100

    gnu: Add go-github-com-hashicorp-go-cleanhttp.
    
    * gnu/packages/golang-web.scm (go-github-com-hashicorp-go-cleanhttp): New 
variable.
    
    Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
---
 gnu/packages/golang-web.scm | 29 +++++++++++++++++++++++++++++
 1 file changed, 29 insertions(+)

diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm
index 29bc50c6a5..ca42f14a59 100644
--- a/gnu/packages/golang-web.scm
+++ b/gnu/packages/golang-web.scm
@@ -1003,6 +1003,35 @@ compliant cache for HTTP responses.  It is only suitable 
for use as a
 shared proxy).")
       (license license:expat))))
 
+(define-public go-github-com-hashicorp-go-cleanhttp
+  (package
+    (name "go-github-com-hashicorp-go-cleanhttp")
+    (version "0.5.2")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/hashicorp/go-cleanhttp";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1i5xslizzwd966w81bz6dxjwzgml4q9bwqa186bsxd1vi8lqxl9p"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      #:import-path "github.com/hashicorp/go-cleanhttp"))
+    (home-page "https://github.com/hashicorp/go-cleanhttp";)
+    (synopsis "Functions for accessing clean Go @code{http.Client} values")
+    (description
+     "The Go standard library contains a default @code{http.Client} and it is
+a common idiom to tweak it as necessary.  Unfortunately, this is a shared
+value, and it is not uncommon for libraries to assume that they are free to
+modify it at will.  This package provides some simple functions to get a
+\"clean\" @code{http.Client}, namely one that uses the same default values as
+the Go standard library, but returns a client that does not share any state
+with other clients.")
+    (license license:mpl2.0)))
+
 (define-public go-github-com-hjson-hjson-go
   (package
     (name "go-github-com-hjson-hjson-go")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]