Skip to content

Instantly share code, notes, and snippets.

@marcmo
Created October 2, 2014 07:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save marcmo/bdcd313005845240ae81 to your computer and use it in GitHub Desktop.
Save marcmo/bdcd313005845240ae81 to your computer and use it in GitHub Desktop.
{stdenv, fetchgit}:
stdenv.mkDerivation {
name = "dlt-viewer-2.12.0";
builder = ./builder.sh;
src = fetchgit {
url = "http://git.projects.genivi.org/dlt-viewer.git";
rev = "v2.12.0";
sha256 = "1hh8v0kcnipwrfz4d45d6pm5bzbm9wgbrdgg0ir2l7wyshbkff6i";
};
meta = {
description = "QT based GUI to view DLT logging traces";
longDescription = ''
DLT is a reusable open source software component for standardized logging
and tracing in infotainment ECUs based on the AUTOSAR 4.0 standard. The
goal of DLT is the consolidation of the existing variety of logging and
tracing protocols on one format.
'';
homepage = http://projects.genivi.org/diagnostic-log-trace;
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment