From 8467b752e871d24a2253da5c72d880e08e781ca3 Mon Sep 17 00:00:00 2001 From: Roman Scherer Date: Sun, 29 Dec 2024 13:14:21 +0100 Subject: [PATCH] gnu: Add go-github-com-guptarohit-asciigraph. * gnu/packages/golang-xyz.scm (go-github-com-guptarohit-asciigraph): New variable. Change-Id: I621a684ede58485940c354a049c1343fb6d2bd0b Signed-off-by: Sharlatan Hellseher --- gnu/packages/golang-xyz.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index e00245a4ec..b545649d2a 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -5548,6 +5548,29 @@ (define-public go-github-com-gosuri-uilive provides a buffered io.Writer that is flushed at a timed interval.") (license license:expat))) +(define-public go-github-com-guptarohit-asciigraph + (package + (name "go-github-com-guptarohit-asciigraph") + (version "0.7.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/guptarohit/asciigraph") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1j708hj80hk1b39zbdfx6kqy75i70jhz55bml0jngqwfx698d1pv")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/guptarohit/asciigraph")) + (home-page "https://github.com/guptarohit/asciigraph") + (synopsis "ASCII line graphs for Golang") + (description + "This package can generate ASCII line graphs in Golang.") + (license license:bsd-3))) + (define-public go-github-com-hanwen-go-fuse (package (name "go-github-com-hanwen-go-fuse")