nixpkgs/pkgs/development/libraries/google-perftools/default.nix
Rob Vermaas 6fd4c26fc2 add google perftools 1.8.3
svn path=/nixpkgs/trunk/; revision=29517
2011-09-27 17:24:01 +00:00

15 lines
439 B
Nix

{stdenv, fetchurl, libunwind}:
stdenv.mkDerivation rec {
name = "google-perftools-1.8.3";
src = fetchurl {
url = "http://google-perftools.googlecode.com/files/${name}.tar.gz";
sha256 = "0ncx3a8jl6n38q9bjnaz5sq96yb6yh99j3bl64k3295v9arl9mva";
};
buildInputs = [libunwind];
meta = {
description = "Fast, multi-threaded malloc() and nifty performance analysis tools.";
platforms = stdenv.lib.platforms.linux;
};
}