2015-06-18 22:52:41 -07:00
|
|
|
{ stdenv, fetchFromGitHub, cmake }:
|
2015-05-08 16:40:45 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "ttylog";
|
2018-02-27 17:53:28 -08:00
|
|
|
version = "0.31";
|
2015-05-08 16:40:45 -07:00
|
|
|
|
2015-06-18 22:52:41 -07:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "rocasa";
|
|
|
|
repo = "ttylog";
|
|
|
|
rev = version;
|
2018-02-27 17:53:28 -08:00
|
|
|
sha256 = "0c746bpjpa77vsr88fxk8h1803p5np1di1mpjf4jy5bv5x3zwm07";
|
2015-05-08 16:40:45 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2017-08-17 12:09:21 -07:00
|
|
|
homepage = http://ttylog.sourceforge.net;
|
2016-01-11 14:15:17 -08:00
|
|
|
description = "Simple serial port logger";
|
|
|
|
longDescription = ''
|
|
|
|
A serial port logger which can be used to print everything to stdout
|
|
|
|
that comes from a serial device.
|
|
|
|
'';
|
2015-05-08 16:40:45 -07:00
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|