summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorFoster Hangdaan <foster@hangdaan.email>2026-06-18 12:49:44 -0400
committerSharlatan Hellseher <sharlatanus@gmail.com>2026-06-19 21:20:52 +0100
commit60c799176f056de33d7682902ff567c248ec8c71 (patch)
tree2d0a5eb7a54d7e29dc91f4100a8d77c4a39bd8b3 /gnu
parent7df3e1bf09a63f6d2376dc8dbbcb99d696564e92 (diff)
gnu: Add go-github-com-fortytw2-leaktest.
* gnu/packages/golang-xyz.scm (go-github-com-fortytw2-leaktest): New variable. Relates-to: guix/guix!9388, guix/guix#9385 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/golang-check.scm24
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/golang-check.scm b/gnu/packages/golang-check.scm
index 24dd7db8ac7..7552294aa4a 100644
--- a/gnu/packages/golang-check.scm
+++ b/gnu/packages/golang-check.scm
@@ -1023,6 +1023,30 @@ can use the mock clock. This is a maintained fork of benbjohnson's
1023 "This package provides a linter to find named returns in Go code.") 1023 "This package provides a linter to find named returns in Go code.")
1024 (license license:gpl3))) 1024 (license license:gpl3)))
1025 1025
1026(define-public go-github-com-fortytw2-leaktest
1027 (package
1028 (name "go-github-com-fortytw2-leaktest")
1029 (version "1.3.0")
1030 (source
1031 (origin
1032 (method git-fetch)
1033 (uri (git-reference
1034 (url "https://github.com/fortytw2/leaktest")
1035 (commit (string-append "v" version))))
1036 (file-name (git-file-name name version))
1037 (sha256
1038 (base32 "0487zghyxqzk6zdbhd2j074pcc2l15l4sfg5clrjqwfbql7519wx"))))
1039 (build-system go-build-system)
1040 (arguments
1041 (list
1042 #:import-path "github.com/fortytw2/leaktest"))
1043 (home-page "https://github.com/fortytw2/leaktest")
1044 (synopsis "Goroutine leak detector")
1045 (description
1046 "Refactored, tested variant of the goroutine leak detector found in both
1047@code{net/http} and the @code{cockroachdb} source tree.")
1048 (license license:bsd-3)))
1049
1026;; XXX: The project looks like abandoned, see 1050;; XXX: The project looks like abandoned, see
1027;; <https://github.com/frankban/quicktest/issues/172>, remove when nothing 1051;; <https://github.com/frankban/quicktest/issues/172>, remove when nothing
1028;; depends on it. 1052;; depends on it.