guix-patches
[Top][All Lists]
Advanced

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

[bug#66603] [PATCH 14/29] gnu: Add go-github-com-gobwas-pool.


From: Wilko Meyer
Subject: [bug#66603] [PATCH 14/29] gnu: Add go-github-com-gobwas-pool.
Date: Wed, 18 Oct 2023 11:38:12 +0200

* gnu/packages/golang.scm (go-github-com-gobwas-pool): New variable.
---
 gnu/packages/golang.scm | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index e0fa50c2da..7a30ead05a 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -2018,6 +2018,28 @@ (define-public go-github-com-gobwas-httphead
      "Package httphead contains utils for parsing HTTP and HTTP-grammar 
compatible
 text protocols headers.")
     (license license:expat)))
+
+(define-public go-github-com-gobwas-pool
+  (package
+    (name "go-github-com-gobwas-pool")
+    (version "0.2.1")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/gobwas/pool";)
+                    (commit (string-append "v" version))))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "0imipsf8nslc78in78wcri2ir2zzajp2h543dp2cshrrdbwkybx7"))))
+    (build-system go-build-system)
+    (arguments
+     '(#:import-path "github.com/gobwas/pool"))
+    (home-page "https://github.com/gobwas/pool";)
+    (synopsis "pool")
+    (description
+     "Package pool contains helpers for pooling structures distinguishable by 
size.")
+    (license license:expat)))
 (define-public go-github-com-pkg-xattr
   (package
     (name "go-github-com-pkg-xattr")
-- 
2.41.0






reply via email to

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