From 40a0d7327ad31ad434a4cb4c1b5af7fb31f86d04 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B6ren=20Tempel?= Date: Mon, 1 Dec 2025 03:02:14 +0100 Subject: [PATCH] gnu: Add go-github-com-alecthomas-kong-for-zk. * gnu/packages/golang-xyz.scm (go-github-com-alecthomas-kong-for-zk): New variable. Change-Id: I1a3fc2da10688579f2a8b2daa605447b07e68861 Signed-off-by: Sharlatan Hellseher --- gnu/packages/golang-xyz.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index 41ba5ad6ab50a4b5bfa8c7c97e00b9110c693e9b..de9afb131af38b5e17714a44afae2ae4f094e138 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -1371,6 +1371,28 @@ be stripped.") with as little developer effort as possible.") (license license:expat))) +(define-public go-github-com-alecthomas-kong-for-zk + (hidden-package + (package + (inherit go-github-com-alecthomas-kong) + (name "go-github-com-alecthomas-kong-for-zk") + (version "0.5.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/alecthomas/kong") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1lk4nb8ilvy0l5szj4s6wnz716vlz0v253423ykmph5l6bmips1k")))) + (arguments + (list + #:tests? #f + #:import-path "github.com/alecthomas/kong")) + (propagated-inputs (list go-github-com-alecthomas-repr + go-github-com-pkg-errors))))) + (define-public go-github-com-alecthomas-kong-hcl (package (name "go-github-com-alecthomas-kong-hcl")