mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
Merge pull request #36572 from ryantm/auto-update/gperftools
gperftools: 2.6.1 -> 2.6.3
This commit is contained in:
commit
d9684a2a0b
@ -1,11 +1,11 @@
|
||||
{ stdenv, fetchurl, libunwind }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "gperftools-2.6.1";
|
||||
name = "gperftools-2.6.3";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/gperftools/gperftools/releases/download/${name}/${name}.tar.gz";
|
||||
sha256 = "10cxd6s5pkm2d934gh47hrn9xcrw4qlc9yr7s99z4a508bmngd1q";
|
||||
sha256 = "17zfivp6n00rlqbrx6q6h71y2f815nvlzysff1ihgk4mxpv2yjri";
|
||||
};
|
||||
|
||||
buildInputs = stdenv.lib.optional stdenv.isLinux libunwind;
|
||||
@ -16,7 +16,9 @@ stdenv.mkDerivation rec {
|
||||
substituteInPlace libtool --replace stdc++ c++
|
||||
'';
|
||||
|
||||
NIX_CFLAGS_COMPILE = stdenv.lib.optional stdenv.isDarwin "-D_XOPEN_SOURCE";
|
||||
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
|
||||
|
Loading…
Reference in New Issue
Block a user