nixpkgs/pkgs/development/tools/profiling/EZTrace/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

34 lines
701 B
Nix
Raw Normal View History

{ lib,
stdenv,
fetchFromGitLab,
gfortran,
libelf,
libiberty,
zlib,
libbfd,
libopcodes,
buildPackages,
autoreconfHook
}:
2014-11-09 12:03:46 +00:00
stdenv.mkDerivation rec {
pname = "EZTrace";
version = "1.1-11";
2014-11-09 12:03:46 +00:00
src = fetchFromGitLab {
owner = "eztrace";
repo = "eztrace";
rev = "eztrace-${version}";
sha256 = "sha256-A6HMr4ib5Ka1lTbbTQOdq3kIdCoN/CwAKRdXdv9wpfU=";
2014-11-09 12:03:46 +00:00
};
nativeBuildInputs = [ gfortran autoreconfHook ];
buildInputs = [ libelf libiberty zlib libbfd libopcodes ];
2014-11-09 12:03:46 +00:00
meta = with lib; {
2014-11-09 12:03:46 +00:00
description = "Tool that aims at generating automatically execution trace from HPC programs";
license = licenses.cecill-b;
maintainers = with maintainers; [ ];
2014-11-09 12:03:46 +00:00
};
}