diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-08 08:21:37 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-22 20:13:04 +0100 |
commit | 4ececfd71289a32683f86f051ea54b3267ec51e3 (patch) | |
tree | e5459be310f0026af8c86ff65b18fa834b47c4bd /gnu/packages/golang-xyz.scm | |
parent | 2c93bd406b193f106af74378b85d0c54f3112995 (diff) |
gnu: Add go-github-com-tj-go-spin.
* gnu/packages/golang-xyz.scm (go-github-com-tj-go-spin): New variable.
Change-Id: I8c7240ce351dd2453d8b1985497c29f19db7f937
Diffstat (limited to 'gnu/packages/golang-xyz.scm')
-rw-r--r-- | gnu/packages/golang-xyz.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index b398d350f1..824d0c7811 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -17389,6 +17389,28 @@ flushing entries at a given size or interval, useful for cases such as batching log events.") (license license:expat))) +(define-public go-github-com-tj-go-spin + (package + (name "go-github-com-tj-go-spin") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/tj/go-spin") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "11xr67991m5pwsy1dira3iwd0sr55vmn1cyjwmlqziw4bwpym64s")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/tj/go-spin")) + (home-page "https://github.com/tj/go-spin") + (synopsis "Terminal spinner package for Golang") + (description "This package provides a little terminal spinner library.") + (license license:expat))) + (define-public go-github-com-tklauser-go-sysconf (package (name "go-github-com-tklauser-go-sysconf") |