at 22.05-pre 26 lines 638 B view raw
1{ lib, stdenv, fetchFromGitHub, cmake }: 2 3stdenv.mkDerivation rec { 4 pname = "ttylog"; 5 version = "0.31"; 6 7 src = fetchFromGitHub { 8 owner = "rocasa"; 9 repo = "ttylog"; 10 rev = version; 11 sha256 = "0c746bpjpa77vsr88fxk8h1803p5np1di1mpjf4jy5bv5x3zwm07"; 12 }; 13 14 nativeBuildInputs = [ cmake ]; 15 16 meta = with lib; { 17 homepage = "http://ttylog.sourceforge.net"; 18 description = "Simple serial port logger"; 19 longDescription = '' 20 A serial port logger which can be used to print everything to stdout 21 that comes from a serial device. 22 ''; 23 license = licenses.gpl2; 24 platforms = platforms.linux; 25 }; 26}