nixpkgs/pkgs/development/libraries/gperftools/default.nix

37 lines
1.3 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, libunwind }:
stdenv.mkDerivation rec {
2020-07-09 03:11:19 -07:00
name = "gperftools-2.8";
src = fetchurl {
url = "https://github.com/gperftools/gperftools/releases/download/${name}/${name}.tar.gz";
2020-07-09 03:11:19 -07:00
sha256 = "0gjiplvday50x695pwjrysnvm5wfvg2b0gmqf6b4bdi8sv6yl394";
};
# tcmalloc uses libunwind in a way that works correctly only on non-ARM linux
buildInputs = stdenv.lib.optional (stdenv.isLinux && !(stdenv.isAarch64 || stdenv.isAarch32)) libunwind;
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++
'';
2019-10-29 18:29:30 -07:00
NIX_CFLAGS_COMPILE = stdenv.lib.optionalString stdenv.isDarwin
"-D_XOPEN_SOURCE -Wno-aligned-allocation-unavailable";
2017-09-18 13:20:57 -07:00
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;
enableParallelBuilding = true;
2014-09-13 18:55:29 -07:00
meta = with stdenv.lib; {
homepage = "https://github.com/gperftools/gperftools";
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;
maintainers = with maintainers; [ vcunat ];
};
}