1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-08 14:10:38 +02:00

gnu: Add go-resenje-org-singleflight.

* gnu/packages/golang-xyz.scm (go-resenje-org-singleflight): New variable.

Change-Id: Ic0e23321565f8b38e3b8572afece2efbbc157d84
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
Arthur Rodrigues
2025-10-26 00:35:19 +00:00
committed by Sharlatan Hellseher
parent bd7be45d59
commit 7b66a2e6aa

View File

@@ -25767,6 +25767,30 @@ package.")
;; License type does latterly says it' "UNLICENSE".
(license license:unlicense)))
(define-public go-resenje-org-singleflight
(package
(name "go-resenje-org-singleflight")
(version "0.4.3")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/janos/singleflight")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "0by4pj1kvqjdv73p420mmj7787rdr2rzzzpg80gnj394i07m8gfq"))))
(build-system go-build-system)
(arguments
(list
#:import-path "resenje.org/singleflight"))
(home-page "https://github.com/janos/singleflight")
(synopsis "Duplicate function call suppression mechanism for Golang")
(description
"This package provides a duplicate function call suppression mechanism
with support for context cancellation.")
(license license:bsd-3)))
(define-public go-rsc-io-binaryregexp
(package
(name "go-rsc-io-binaryregexp")