2025-08-08 14:47:20 +00:00

33 lines
620 B
Nix

{
lib,
buildGoModule,
fetchFromGitHub,
}:
buildGoModule rec {
pname = "asciigraph";
version = "0.7.3";
src = fetchFromGitHub {
owner = "guptarohit";
repo = "asciigraph";
tag = "v${version}";
hash = "sha256-+4aGkumO42cloHWV8qEEJ5bj8TTdtfXTWGFCgCRE4Mg=";
};
vendorHash = null;
ldflags = [
"-s"
"-w"
];
meta = {
homepage = "https://github.com/guptarohit/asciigraph";
description = "Lightweight ASCII line graph command line app";
mainProgram = "asciigraph";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ mmahut ];
};
}