nixpkgs/pkgs/by-name/tt/ttylog/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
671 B
Nix
Raw Permalink Normal View History

{ lib, stdenv, fetchFromGitHub, cmake }:
2015-05-09 00:40:45 +01:00
stdenv.mkDerivation rec {
pname = "ttylog";
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;
sha256 = "0c746bpjpa77vsr88fxk8h1803p5np1di1mpjf4jy5bv5x3zwm07";
2015-05-09 00:40:45 +01:00
};
nativeBuildInputs = [ cmake ];
meta = with lib; {
homepage = "https://ttylog.sourceforge.net";
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.
'';
2024-04-26 12:35:31 +01:00
license = licenses.gpl2Plus;
2015-05-09 00:40:45 +01:00
platforms = platforms.linux;
2023-11-27 01:17:53 +00:00
mainProgram = "ttylog";
2015-05-09 00:40:45 +01:00
};
}