summary refs log tree commit diff
path: root/pkgs/development/tools/profiling
diff options
context:
space:
mode:
authorMateusz Kowalczyk <fuuzetsu@fuuzetsu.co.uk>2014-11-09 12:03:46 +0000
committerMateusz Kowalczyk <fuuzetsu@fuuzetsu.co.uk>2014-11-09 12:05:44 +0000
commitce4f49cec191f6b960f8ecc6a83abf69fe2b7c70 (patch)
tree7b80870c07f7239114308dcb407d4d411826c0c9 /pkgs/development/tools/profiling
parent03400ab9ae9380753bb22eb806a9775c892e2961 (diff)
downloadnixlib-ce4f49cec191f6b960f8ecc6a83abf69fe2b7c70.tar
nixlib-ce4f49cec191f6b960f8ecc6a83abf69fe2b7c70.tar.gz
nixlib-ce4f49cec191f6b960f8ecc6a83abf69fe2b7c70.tar.bz2
nixlib-ce4f49cec191f6b960f8ecc6a83abf69fe2b7c70.tar.lz
nixlib-ce4f49cec191f6b960f8ecc6a83abf69fe2b7c70.tar.xz
nixlib-ce4f49cec191f6b960f8ecc6a83abf69fe2b7c70.tar.zst
nixlib-ce4f49cec191f6b960f8ecc6a83abf69fe2b7c70.zip
EZTrace: new package
Diffstat (limited to 'pkgs/development/tools/profiling')
-rw-r--r--pkgs/development/tools/profiling/EZTrace/default.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/pkgs/development/tools/profiling/EZTrace/default.nix b/pkgs/development/tools/profiling/EZTrace/default.nix
new file mode 100644
index 000000000000..2c9b435682de
--- /dev/null
+++ b/pkgs/development/tools/profiling/EZTrace/default.nix
@@ -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 ];
+  };
+}