b5c1deca8a
He prefers to contribute to his own nixpkgs fork triton. Since he is still marked as maintainer in many packages this leaves the wrong impression he still maintains those.
37 lines
1.1 KiB
Nix
37 lines
1.1 KiB
Nix
{ stdenv, fetchurl, libunwind }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "gperftools-2.6.3";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/gperftools/gperftools/releases/download/${name}/${name}.tar.gz";
|
|
sha256 = "17zfivp6n00rlqbrx6q6h71y2f815nvlzysff1ihgk4mxpv2yjri";
|
|
};
|
|
|
|
buildInputs = stdenv.lib.optional stdenv.isLinux libunwind;
|
|
|
|
prePatch = stdenv.lib.optionalString stdenv.isDarwin ''
|
|
substituteInPlace Makefile.am --replace stdc++ c++
|
|
substituteInPlace Makefile.in --replace stdc++ c++
|
|
substituteInPlace libtool --replace stdc++ c++
|
|
'';
|
|
|
|
NIX_CFLAGS_COMPILE = stdenv.lib.optionals stdenv.isDarwin [
|
|
"-D_XOPEN_SOURCE" "-Wno-aligned-allocation-unavailable"
|
|
];
|
|
|
|
# some packages want to link to the static tcmalloc_minimal
|
|
# to drop the runtime dependency on gperftools
|
|
dontDisableStatic = true;
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://github.com/gperftools/gperftools;
|
|
description = "Fast, multi-threaded malloc() and nifty performance analysis tools";
|
|
platforms = with platforms; linux ++ darwin;
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ vcunat ];
|
|
};
|
|
}
|