EZTrace: new package

This commit is contained in:
Mateusz Kowalczyk 2014-11-09 12:03:46 +00:00
parent 03400ab9ae
commit ce4f49cec1
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,24 @@
{ stdenv, fetchurl, autoconf, libelf, gfortran, zlib, binutils }:
stdenv.mkDerivation rec {
version = "1.0.6";
name = "EZTrace-${version}";
src = fetchurl {
url = "http://gforge.inria.fr/frs/download.php/file/34082/eztrace-${version}.tar.gz";
sha256 = "06q5y9qmdn1h0wjmy28z6gwswskmph49j7simfqcqwv05gvd9svr";
};
# Goes past the rpl_malloc linking failure
preConfigure = ''
export ac_cv_func_malloc_0_nonnull=yes
'';
buildInputs = [ autoconf libelf gfortran zlib binutils ];
meta = {
description = "Tool that aims at generating automatically execution trace from HPC programs";
license = stdenv.lib.licenses.cecill-b;
maintainers = with stdenv.lib.maintainers; [ fuuzetsu ];
};
}

View File

@ -4494,6 +4494,8 @@ let
emma = callPackage ../development/tools/analysis/emma { };
eztrace = callPackage ../development/tools/profiling/EZTrace { };
findbugs = callPackage ../development/tools/analysis/findbugs { };
pmd = callPackage ../development/tools/analysis/pmd { };