asciigraph: init at 0.5.1 (#103184)

gstqt5
Marek Mahut 2020-11-11 14:48:05 +01:00 committed by GitHub
parent 9a3ab73a5b
commit e39bc29e1e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,22 @@
{ lib, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
pname = "asciigraph";
version = "0.5.1";
goPackagePath = "github.com/guptarohit/asciigraph";
src = fetchFromGitHub {
owner = "guptarohit";
repo = pname;
rev = "v${version}";
sha256 = "0aqf64b5d5lf9scvxdx5f3p0vvx5s59mrvr6hcjljg1prksah9ns";
};
meta = with lib; {
homepage = "https://github.com/guptarohit/asciigraph";
description = "Lightweight ASCII line graph command line app";
license = licenses.bsd3;
maintainers = [ maintainers.mmahut ];
};
}

View File

@ -8654,6 +8654,8 @@ in
arachne-pnr = callPackage ../development/compilers/arachne-pnr { };
asciigraph = callPackage ../tools/text/asciigraph { };
asn1c = callPackage ../development/compilers/asn1c { };
aspectj = callPackage ../development/compilers/aspectj { };