diff options
| author | Sören Tempel <soeren+git@soeren-tempel.net> | 2025-12-01 16:34:08 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-12-18 23:19:26 +0000 |
| commit | dbc557eb058f8d5dc7fd048d0106da9f7e74ae85 (patch) | |
| tree | c1735c624ac75e78eb194711117d7e2eb3456265 /gnu | |
| parent | 28b519e8a9f9e395dff8ab0c283c7bc6656ecc00 (diff) | |
gnu: Add go-github-com-tliron-kutil.
* gnu/packages/golang-xyz.scm (go-github-com-tliron-kutil): New variable.
Change-Id: Ib92479ecbce5e2b820d33fb599e94e64b6f8943e
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/golang-xyz.scm | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index 6642a73f85..fdd2e50222 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -22465,6 +22465,47 @@ supported by the time package @end itemize") (license license:expat))) +(define-public go-github-com-tliron-kutil + (package + (name "go-github-com-tliron-kutil") + (version "0.1.59") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/tliron/go-kutil") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "07lhzgpsi96icdya874xmfd1ymg4s4y09s7m7h398aryn7hbysyg")))) + (build-system go-build-system) + (arguments + (list + ;; TODO: Not ready packages required for tests and full build. + ;; (propagated-inputs + ;; (list + ;; go-github-com-beevik-etree + ;; go-github-com-coreos-go-systemd + ;; go-github-com-dop251-goja + ;; go-github-com-fxamacker-cbor + ;; go-github-com-go-git-go-git + ;; go-github-com-google-go-containerregistry + ;; go-github-com-hokaccha-go-prettyjson + ;; go-github-com-mitchellh-hashstructure + ;; go-github-com-segmentio-ksuid + ;; go-github-com-tliron-yamlkeys + ;; go-github-com-zchee-color + ;; go-k8s-io-apiextensions-apiserver + ;; go-k8s-io-klog)) + #:skip-build? #t + #:tests? #f + #:import-path "github.com/tliron/kutil")) + (home-page "https://github.com/tliron/go-kutil") + (synopsis "Utility library for Golang") + (description + "This package provides a collection of Golang utilities.") + (license license:asl2.0))) + (define-public go-github-com-tomwright-dasel-v2 (package (name "go-github-com-tomwright-dasel-v2") |
