Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

pprof: init at 2017-08-28

+49
+35
pkgs/development/tools/profiling/pprof/default.nix
···
··· 1 + # This file was originally generated by https://github.com/kamilchm/go2nix v1.2.1 2 + { stdenv, buildGoPackage, fetchgit }: 3 + 4 + buildGoPackage rec { 5 + name = "pprof-${version}"; 6 + version = "2017-08-28"; 7 + rev = "d19a98b9bcec464f178b20da0f936cef7e15462e"; 8 + 9 + goPackagePath = "github.com/google/pprof"; 10 + 11 + src = fetchgit { 12 + inherit rev; 13 + url = "git://github.com/google/pprof"; 14 + sha256 = "0wh589fndvvidisy0jy19y0ykw4l05paqd53s8kli7h9zdcl11gq"; 15 + }; 16 + 17 + goDeps = ./deps.nix; 18 + 19 + meta = with stdenv.lib; { 20 + description = "A tool for visualization and analysis of profiling data"; 21 + homepage = https://github.com/google/pprof; 22 + license = licenses.asl20; 23 + longDescription = '' 24 + pprof reads a collection of profiling samples in profile.proto format and generates reports to visualize and help analyze the data. It can generate both text and graphical reports (through the use of the dot visualization package). 25 + 26 + profile.proto is a protocol buffer that describes a set of callstacks and symbolization information. A common usage is to represent a set of sampled callstacks from statistical profiling. The format is described on the proto/profile.proto file. For details on protocol buffers, see https://developers.google.com/protocol-buffers 27 + 28 + Profiles can be read from a local file, or over http. Multiple profiles of the same type can be aggregated or compared. 29 + 30 + If the profile samples contain machine addresses, pprof can symbolize them through the use of the native binutils tools (addr2line and nm). 31 + 32 + This is not an official Google product. 33 + ''; 34 + }; 35 + }
+12
pkgs/development/tools/profiling/pprof/deps.nix
···
··· 1 + # This file was generated by https://github.com/kamilchm/go2nix v1.2.1 2 + [ 3 + { 4 + goPackagePath = "github.com/ianlancetaylor/demangle"; 5 + fetch = { 6 + type = "git"; 7 + url = "https://github.com/ianlancetaylor/demangle"; 8 + rev = "4883227f66371e02c4948937d3e2be1664d9be38"; 9 + sha256 = "1yj7c9i1sg26fyx6cmz87x3qh71rldkl6h87x5gysqzipm9jg54l"; 10 + }; 11 + } 12 + ]
+2
pkgs/top-level/all-packages.nix
··· 7223 7224 postiats-utilities = callPackage ../development/tools/postiats-utilities {}; 7225 7226 prelink = callPackage ../development/tools/misc/prelink { }; 7227 7228 premake3 = callPackage ../development/tools/misc/premake/3.nix { };
··· 7223 7224 postiats-utilities = callPackage ../development/tools/postiats-utilities {}; 7225 7226 + pprof = callPackage ../development/tools/profiling/pprof { }; 7227 + 7228 prelink = callPackage ../development/tools/misc/prelink { }; 7229 7230 premake3 = callPackage ../development/tools/misc/premake/3.nix { };