Merge pull request #167616 from aaronjheng/asciigraph

asciigraph: switch to buildGoModule
This commit is contained in:
Mario Rodas 2022-04-07 01:16:43 -05:00 committed by GitHub
commit ae622f6eec
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,11 +1,9 @@
{ lib, buildGoPackage, fetchFromGitHub }: { lib, buildGoModule, fetchFromGitHub }:
buildGoPackage rec { buildGoModule rec {
pname = "asciigraph"; pname = "asciigraph";
version = "0.5.3"; version = "0.5.3";
goPackagePath = "github.com/guptarohit/asciigraph";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "guptarohit"; owner = "guptarohit";
repo = pname; repo = pname;
@ -13,10 +11,14 @@ buildGoPackage rec {
sha256 = "sha256-GzFJT4LI1QZzghs9g2A+pqkTg68XC+m9F14rYpMxEXM="; sha256 = "sha256-GzFJT4LI1QZzghs9g2A+pqkTg68XC+m9F14rYpMxEXM=";
}; };
vendorSha256 = "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=";
ldflags = [ "-s" "-w" ];
meta = with lib; { meta = with lib; {
homepage = "https://github.com/guptarohit/asciigraph"; homepage = "https://github.com/guptarohit/asciigraph";
description = "Lightweight ASCII line graph command line app"; description = "Lightweight ASCII line graph command line app";
license = licenses.bsd3; license = licenses.bsd3;
maintainers = [ maintainers.mmahut ]; maintainers = with maintainers; [ mmahut ];
}; };
} }