Skip to content

Commit

Permalink
EZTrace: new package
Browse files Browse the repository at this point in the history
  • Loading branch information
Fuuzetsu committed Nov 9, 2014
1 parent 03400ab commit ce4f49c
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
24 changes: 24 additions & 0 deletions pkgs/development/tools/profiling/EZTrace/default.nix
Original file line number Diff line number Diff line change
@@ -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 ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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 { };
Expand Down

0 comments on commit ce4f49c

Please sign in to comment.