Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 13 additions & 16 deletions pkgs/by-name/gp/gperftools/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5,36 +5,32 @@
fetchpatch,
autoreconfHook,
libunwind,
perl,
}:

stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
pname = "gperftools";
version = "2.15";
version = "2.17";

src = fetchFromGitHub {
owner = "gperftools";
repo = "gperftools";
rev = "gperftools-${version}";
sha256 = "sha256-3ibr8AHzo7txX1U+9oOWA60qeeJs/OGeevv+sgBwQa0=";
tag = "gperftools-${finalAttrs.version}";
sha256 = "sha256-Tm+sYKwFSHAxOALgr9UGv7vBMlWqUymXsvNu7Sku6Kk=";
};

patches = [
# Add the --disable-general-dynamic-tls configure option:
# https://bugzilla.redhat.com/show_bug.cgi?id=1483558
(fetchpatch {
url = "https://src.fedoraproject.org/rpms/gperftools/raw/f62d87a34f56f64fb8eb86727e34fbc2d3f5294a/f/gperftools-2.7.90-disable-generic-dynamic-tls.patch";
sha256 = "02falhpaqkl27hl1dib4yvmhwsddmgbw0krb46w31fyf3awb2ydv";
url = "https://src.fedoraproject.org/rpms/gperftools/raw/88ce8ee43a12b1a8146781a1b4d9abbd8df8af0e/f/gperftools-2.17-disable-generic-dynamic-tls.patch";
hash = "sha256-IOLUf9mCEA+fVSJKU94akcnXTIm7+t+S9cjBHsEDwFA=";
})
];

nativeBuildInputs = [ autoreconfHook ];

# tcmalloc uses libunwind in a way that works correctly only on non-ARM dynamically linked linux
buildInputs = [
perl
]
++ lib.optional (
buildInputs = lib.optional (
stdenv.hostPlatform.isLinux && !(stdenv.hostPlatform.isAarch || stdenv.hostPlatform.isStatic)
) libunwind;

Expand All @@ -54,11 +50,12 @@ stdenv.mkDerivation rec {

enableParallelBuilding = true;

meta = with lib; {
meta = {
changelog = "https://github.com/gperftools/gperftools/releases/tag/${finalAttrs.src.tag}";
homepage = "https://github.com/gperftools/gperftools";
description = "Fast, multi-threaded malloc() and nifty performance analysis tools";
platforms = platforms.all;
license = licenses.bsd3;
maintainers = with maintainers; [ vcunat ];
platforms = lib.platforms.all;
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ vcunat ];
};
}
})
Loading