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

33 lines
1 KiB
Nix
Raw Normal View History

2015-01-02 18:47:41 +00:00
{ stdenv, fetchurl, unzip, libunwind }:
stdenv.mkDerivation rec {
2015-01-14 21:22:31 +00:00
name = "gperftools-2.4";
src = fetchurl {
2015-01-14 21:22:31 +00:00
url = "https://googledrive.com/host/0B6NtGsLhIcf7MWxMMF9JdTN3UVk/gperftools-2.4.tar.gz";
sha256 = "0b8aqgch8dyapzw2zd9g89x6gsnm2ml0gf169rql0bxldqi3falq";
};
2015-01-02 18:47:41 +00:00
buildInputs = [ unzip ] ++ stdenv.lib.optional stdenv.isLinux libunwind;
2015-07-23 22:47:16 +00:00
prePatch = stdenv.lib.optionalString stdenv.isDarwin ''
substituteInPlace Makefile.am --replace stdc++ c++
substituteInPlace Makefile.in --replace stdc++ c++
substituteInPlace libtool --replace stdc++ c++
'';
2013-11-08 22:45:47 +00:00
# some packages want to link to the static tcmalloc_minimal
# to drop the runtime dependency on gperftools
dontDisableStatic = true;
enableParallelBuilding = true;
2014-09-14 01:55:29 +00:00
meta = with stdenv.lib; {
homepage = https://code.google.com/p/gperftools/;
description = "Fast, multi-threaded malloc() and nifty performance analysis tools";
2014-09-14 01:55:29 +00:00
platforms = with platforms; linux ++ darwin;
license = licenses.bsd3;
maintainers = with maintainers; [ wkennington ];
};
}