1 { lib, stdenv, fetchFromGitHub, ncurses }:
3 stdenv.mkDerivation rec {
7 src = fetchFromGitHub {
11 sha256 = "19qm0hx9ljdw9qg78lydn3c627xy7xnx3knq5f7caw9lf0cdp7kf";
14 buildInputs = [ ncurses ];
17 ${stdenv.cc}/bin/cc ./ttyplot.c -lncurses -o ttyplot
26 description = "A simple general purpose plotting utility for tty with data input from stdin";
27 homepage = "https://github.com/tenox7/ttyplot";
28 license = licenses.unlicense;
29 maintainers = with maintainers; [ lassulus ];