mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
1451a52a38
I haven't been doing any maintenance for a long time now and not only do I get notified, it also creates a fake impression that all these packages had at least one maintainer when in practice they had none.
32 lines
923 B
Nix
32 lines
923 B
Nix
{ stdenv
|
|
, fetchurl, autoconf, gfortran
|
|
, libelf, libiberty, zlib, libbfd, libopcodes
|
|
, buildPackages
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "1.1-7";
|
|
pname = "EZTrace";
|
|
|
|
src = fetchurl {
|
|
url = "https://gforge.inria.fr/frs/download.php/file/37155/eztrace-${version}.tar.gz";
|
|
sha256 = "0cr2d4fdv4ljvag55dsz3rpha1jan2gc3jhr06ycyk43450pl58p";
|
|
};
|
|
|
|
# Goes past the rpl_malloc linking failure; fixes silent file breakage
|
|
preConfigure = ''
|
|
export ac_cv_func_malloc_0_nonnull=yes
|
|
substituteInPlace ./configure \
|
|
--replace "/usr/bin/file" "${buildPackages.file}/bin/file"
|
|
'';
|
|
|
|
nativeBuildInputs = [ autoconf gfortran ];
|
|
buildInputs = [ libelf libiberty zlib libbfd libopcodes ];
|
|
|
|
meta = {
|
|
description = "Tool that aims at generating automatically execution trace from HPC programs";
|
|
license = stdenv.lib.licenses.cecill-b;
|
|
maintainers = with stdenv.lib.maintainers; [ ];
|
|
};
|
|
}
|