nixpkgs/pkgs/tools/misc/ttyplot/default.nix

32 lines
722 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, ncurses }:
2018-10-15 20:03:17 +00:00
stdenv.mkDerivation rec {
pname = "ttyplot";
version = "1.4";
2018-10-15 20:03:17 +00:00
src = fetchFromGitHub {
owner = "tenox7";
repo = "ttyplot";
rev = version;
sha256 = "19qm0hx9ljdw9qg78lydn3c627xy7xnx3knq5f7caw9lf0cdp7kf";
2018-10-15 20:03:17 +00:00
};
buildInputs = [ ncurses ];
buildPhase = ''
${stdenv.cc}/bin/cc ./ttyplot.c -lncurses -o ttyplot
'';
installPhase = ''
mkdir -p $out/bin
cp ttyplot $out/bin/
'';
meta = with lib; {
description = "A simple general purpose plotting utility for tty with data input from stdin";
homepage = "https://github.com/tenox7/ttyplot";
2018-10-15 20:03:17 +00:00
license = licenses.unlicense;
maintainers = with maintainers; [ lassulus ];
};
}