2016-05-09 13:43:43 +01:00
|
|
|
{ stdenv, fetchgit, cmake }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
|
|
|
|
name = "tracefilegen-2015-11-14";
|
|
|
|
|
|
|
|
src = fetchgit {
|
|
|
|
url = "https://github.com/GarCoSim/TraceFileGen.git";
|
|
|
|
rev = "4acf75b142683cc475c6b1c841a221db0753b404";
|
2016-05-19 09:27:57 +01:00
|
|
|
sha256 = "0mh661l9d1lczv0mr2y9swzqqlwikyqiv1hdd71r9v8cvm54y5ij";
|
2016-05-09 13:43:43 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ cmake ];
|
|
|
|
|
|
|
|
builder = ./builder.sh;
|
2016-05-19 09:27:57 +01:00
|
|
|
|
2016-05-09 13:43:43 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Automatically generate all types of basic memory management operations and write into trace files";
|
2017-08-01 21:03:30 +01:00
|
|
|
homepage = https://github.com/GarCoSim;
|
2016-05-09 13:43:43 +01:00
|
|
|
maintainers = [ maintainers.cmcdragonkai ];
|
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|