diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-11-24 19:53:13 +0000 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-01-21 23:41:46 +0000 |
commit | d69b39d6088284e173b451592c3e09d7ab37e80b (patch) | |
tree | 4e3f43d2af2d2de56ee245db1b8509b81be57020 /gnu/packages/golang-xyz.scm | |
parent | 44a782900b06f1f2821b9fe1bb5c1ea213809488 (diff) |
gnu: go-github-com-miolini-datacounter: Move to golang-xyz.
* gnu/packages/golang.scm (go-github-com-miolini-datacounter): Move from
here ...
* gnu/packages/golang-xyz.scm: ... to here.
Change-Id: I335a3f8d884ce10054d7a75a223cafbbc9d269af
Diffstat (limited to 'gnu/packages/golang-xyz.scm')
-rw-r--r-- | gnu/packages/golang-xyz.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index 3895c98e39..1fbc0f9c1b 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -5622,6 +5622,29 @@ language, namely support for record length-delimited message streaming.") colored strings.") (license license:expat))) +(define-public go-github-com-miolini-datacounter + (package + (name "go-github-com-miolini-datacounter") + (version "1.0.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/miolini/datacounter") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0s1hxqy6666qd524rdp1dr3778davc8gx9brg9lkcjvr5l05s9wa")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/miolini/datacounter")) + (home-page "https://github.com/miolini/datacounter") + (synopsis "Counters for Go readers and writers") + (description + "The datacounter package provides counters for Go readers and writers.") + (license license:expat))) + (define-public go-github-com-mitchellh-colorstring (package (name "go-github-com-mitchellh-colorstring") |