guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 7a06dfb6c2763da15574f31f1f0527d187c01adc
Author: Danny Milosavljevic <[email protected]>
AuthorDate: Fri Dec 5 19:26:58 2025 +0100
gnu: Add go-github-com-ysmood-leakless.
* gnu/packages/golang-xyz.scm (go-github-com-ysmood-leakless): New variable.
Change-Id: I1519054d9045a0925c62240d9a1f5cc439bb127f
Signed-off-by: Sharlatan Hellseher <[email protected]>
---
gnu/packages/golang-xyz.scm | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 28173fc4bc..97e31172b9 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -24739,6 +24739,30 @@ format for debugging and logging purposes.")
similar to JSONPath but with a simpler syntax.")
(license license:expat)))
+(define-public go-github-com-ysmood-leakless
+ (package
+ (name "go-github-com-ysmood-leakless")
+ (version "0.9.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/ysmood/leakless")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "13yas5q77apk3zjp532pms4005zpzqlb0bbhvw6m0ky5cxpz4rww"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:import-path "github.com/ysmood/leakless"))
+ (home-page "https://github.com/ysmood/leakless")
+ (synopsis "Go library for leak-free subprocess management")
+ (description
+ "Leakless is a Go library that ensures child processes are properly
+terminated when the parent process exits, preventing zombie processes.")
+ (license license:expat)))
+
(define-public go-github-com-yudai-gojsondiff
(package
(name "go-github-com-yudai-gojsondiff")