Created
October 2, 2014 07:46
-
-
Save marcmo/bdcd313005845240ae81 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{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