Skip to content

Commit

Permalink
asciigraph: init at 0.5.1 (#103184)
Browse files Browse the repository at this point in the history
  • Loading branch information
mmahut committed Nov 11, 2020
1 parent 9a3ab73 commit e39bc29
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
22 changes: 22 additions & 0 deletions pkgs/tools/text/asciigraph/default.nix
@@ -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 ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -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 { };
Expand Down

0 comments on commit e39bc29

Please sign in to comment.