biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / text / asciigraph / default.nix
blob46166d8c6370a737097f3a5e0a590a6f1fd5c206
1 { lib, buildGoModule, fetchFromGitHub }:
3 buildGoModule rec {
4   pname = "asciigraph";
5   version = "0.7.2";
7   src = fetchFromGitHub {
8     owner = "guptarohit";
9     repo = pname;
10     rev = "v${version}";
11     sha256 = "sha256-Y+RRFFCeuDjzTznpfC7Wn3j96ZCFSOzvb8ND/ATW+JI=";
12   };
14   vendorHash = null;
16   ldflags = [ "-s" "-w" ];
18   meta = with lib; {
19     homepage = "https://github.com/guptarohit/asciigraph";
20     description = "Lightweight ASCII line graph ╭┈╯ command line app";
21     mainProgram = "asciigraph";
22     license = licenses.bsd3;
23     maintainers = with maintainers; [ mmahut ];
24   };