summary refs log tree commit diff
path: root/pkgs/development/tools/profiling/EZTrace/default.nix
blob: 2c9b435682dead7649b89f7699c1ea7d2b31cef7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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 ];
  };
}