ttyplot: init at 1.0

This commit is contained in:
lassulus 2018-10-15 22:03:17 +02:00
parent 6fe0f07557
commit 1758ef04e8
2 changed files with 32 additions and 0 deletions

View file

@ -0,0 +1,30 @@
{ stdenv, fetchFromGitHub, ncurses }:
stdenv.mkDerivation rec {
name = "ttyplot-${version}";
version = "1.0";
src = fetchFromGitHub {
owner = "tenox7";
repo = "ttyplot";
rev = version;
sha256 = "1i54hw7fad42gdlrlqg7s0vhsq01yxzdi2s0r3svwbb1sr7ynzn1";
};
buildInputs = [ ncurses ];
buildPhase = ''
${stdenv.cc}/bin/cc ./ttyplot.c -lncurses -o ttyplot
'';
installPhase = ''
mkdir -p $out/bin
cp ttyplot $out/bin/
'';
meta = with stdenv.lib; {
description = "a simple general purpose plotting utility for tty with data input from stdin.";
homepage = https://github.com/tenox7/ttyplot;
license = licenses.unlicense;
maintainers = with maintainers; [ lassulus ];
};
}

View file

@ -5739,6 +5739,8 @@ with pkgs;
tty-clock = callPackage ../tools/misc/tty-clock { };
ttyplot = callPackage ../tools/misc/ttyplot { };
ttyrec = callPackage ../tools/misc/ttyrec { };
ttylog = callPackage ../tools/misc/ttylog { };