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