2016-09-13 07:03:37 -07:00
|
|
|
{ stdenv, fetchurl, libunwind }:
|
2013-01-28 04:48:35 -08:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-03-08 13:55:38 -08:00
|
|
|
name = "gperftools-2.6.3";
|
2013-01-28 04:48:35 -08:00
|
|
|
|
|
|
|
src = fetchurl {
|
2016-09-13 07:03:37 -07:00
|
|
|
url = "https://github.com/gperftools/gperftools/releases/download/${name}/${name}.tar.gz";
|
2018-03-08 13:55:38 -08:00
|
|
|
sha256 = "17zfivp6n00rlqbrx6q6h71y2f815nvlzysff1ihgk4mxpv2yjri";
|
2013-01-28 04:48:35 -08:00
|
|
|
};
|
|
|
|
|
2016-09-13 07:03:37 -07:00
|
|
|
buildInputs = stdenv.lib.optional stdenv.isLinux libunwind;
|
2013-01-28 04:48:35 -08:00
|
|
|
|
2015-07-23 15:47:16 -07:00
|
|
|
prePatch = stdenv.lib.optionalString stdenv.isDarwin ''
|
|
|
|
substituteInPlace Makefile.am --replace stdc++ c++
|
|
|
|
substituteInPlace Makefile.in --replace stdc++ c++
|
|
|
|
substituteInPlace libtool --replace stdc++ c++
|
|
|
|
'';
|
|
|
|
|
2017-09-18 13:20:57 -07:00
|
|
|
NIX_CFLAGS_COMPILE = stdenv.lib.optional stdenv.isDarwin "-D_XOPEN_SOURCE";
|
|
|
|
|
2013-11-08 14:45:47 -08:00
|
|
|
# some packages want to link to the static tcmalloc_minimal
|
|
|
|
# to drop the runtime dependency on gperftools
|
|
|
|
dontDisableStatic = true;
|
|
|
|
|
2013-01-28 04:48:35 -08:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2014-09-13 18:55:29 -07:00
|
|
|
meta = with stdenv.lib; {
|
2017-10-26 16:44:19 -07:00
|
|
|
homepage = https://github.com/gperftools/gperftools;
|
2013-01-28 04:48:35 -08:00
|
|
|
description = "Fast, multi-threaded malloc() and nifty performance analysis tools";
|
2014-09-13 18:55:29 -07:00
|
|
|
platforms = with platforms; linux ++ darwin;
|
|
|
|
license = licenses.bsd3;
|
2016-09-13 07:03:37 -07:00
|
|
|
maintainers = with maintainers; [ vcunat wkennington ];
|
2013-01-28 04:48:35 -08:00
|
|
|
};
|
|
|
|
}
|