guix-patches
[Top][All Lists]
Advanced

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

[bug#61946] [PATCH 4/6] gnu: Add go-github-com-tdewolff-test.


From: Thomas Ieong
Subject: [bug#61946] [PATCH 4/6] gnu: Add go-github-com-tdewolff-test.
Date: Sat, 4 Mar 2023 00:01:57 +0100

* gnu/packages/golang.scm (go-github-com-tdewolff-test): New variable.
---
 gnu/packages/golang.scm | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index a331331546..c4426d2a4f 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -9692,6 +9692,30 @@ (define-public go-github-com-tdewolff-parse-v2
 subpackages.")
     (license license:expat)))
 
+(define-public go-github-com-tdewolff-test
+  (package
+    (name "go-github-com-tdewolff-test")
+    (version "1.0.7")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/tdewolff/test";)
+                    (commit (string-append "v" version))))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "0k1yk2y2mryps0klsbcdxvn7acaxqxkl9mdi2cm6zgl29n3l5gi0"))))
+    (build-system go-build-system)
+    (arguments
+     '(#:import-path "github.com/tdewolff/test"))
+    (home-page "https://github.com/tdewolff/test";)
+    (synopsis "Go test helper functions")
+    (description
+     "Test is a helper package written in @@url{http://golang.org/,Go}.  It 
implements
+a few functions that are useful for io testing, such as readers and writers 
that
+fail after N consecutive reads/writes.")
+    (license license:expat)))
+
 (define-public go-github-com-hashicorp-go-syslog
   (package
     (name "go-github-com-hashicorp-go-syslog")
-- 
2.39.1






reply via email to

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