2015-06-19 06:52:41 +01:00
|
|
|
{ stdenv, fetchFromGitHub, cmake }:
|
2015-05-09 00:40:45 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2015-06-19 06:52:41 +01:00
|
|
|
name = "ttylog-${version}";
|
2018-02-28 01:53:28 +00:00
|
|
|
version = "0.31";
|
2015-05-09 00:40:45 +01:00
|
|
|
|
2015-06-19 06:52:41 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "rocasa";
|
|
|
|
repo = "ttylog";
|
|
|
|
rev = version;
|
2018-02-28 01:53:28 +00:00
|
|
|
sha256 = "0c746bpjpa77vsr88fxk8h1803p5np1di1mpjf4jy5bv5x3zwm07";
|
2015-05-09 00:40:45 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2017-08-17 20:09:21 +01:00
|
|
|
homepage = http://ttylog.sourceforge.net;
|
2016-01-11 22:15:17 +00: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-09 00:40:45 +01:00
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ wkennington ];
|
|
|
|
};
|
|
|
|
}
|