mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
add google perftools 1.8.3
svn path=/nixpkgs/trunk/; revision=29517
This commit is contained in:
parent
dbb9440ef7
commit
6fd4c26fc2
2 changed files with 16 additions and 0 deletions
14
pkgs/development/libraries/google-perftools/default.nix
Normal file
14
pkgs/development/libraries/google-perftools/default.nix
Normal file
|
@ -0,0 +1,14 @@
|
|||
{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;
|
||||
};
|
||||
}
|
|
@ -3475,6 +3475,8 @@ let
|
|||
inherit (gnome) gtk glib;
|
||||
};
|
||||
|
||||
google_perftools = callPackage ../development/libraries/google-perftools { };
|
||||
|
||||
#GMP ex-satellite, so better keep it near gmp
|
||||
mpfr = callPackage ../development/libraries/mpfr { };
|
||||
|
||||
|
|
Loading…
Reference in a new issue