mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
Merge pull request #54580 from plapadoo/gprof2dot-latest
gprof2dot: 2015-04-27 -> 2017-09-19
This commit is contained in:
commit
1321f17bc1
@ -1,19 +1,20 @@
|
||||
{ stdenv, fetchFromGitHub, pythonPackages }:
|
||||
{ lib, fetchFromGitHub, buildPythonApplication }:
|
||||
|
||||
pythonPackages.buildPythonApplication {
|
||||
name = "gprof2dot-2015-04-27";
|
||||
buildPythonApplication {
|
||||
name = "gprof2dot-2017-09-19";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "jrfonseca";
|
||||
repo = "gprof2dot";
|
||||
rev = "6fbb81559609c12e7c64ae5dce7d102a414a7514";
|
||||
sha256 = "1fff7w6dm6lld11hp2ij97f85ma1154h62dvchq19c5jja3zjw3c";
|
||||
rev = "2017.09.19";
|
||||
sha256 = "1b5wvjv5ykbhz7aix7l3y7mg1hxi0vgak4a49gr92sdlz8blj51v";
|
||||
};
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
homepage = https://github.com/jrfonseca/gprof2dot;
|
||||
description = "Python script to convert the output from many profilers into a dot graph";
|
||||
license = licenses.lgpl3Plus;
|
||||
platforms = platforms.linux;
|
||||
maintainers = [ maintainers.pmiddend ];
|
||||
};
|
||||
}
|
@ -3025,8 +3025,6 @@ in
|
||||
callPackage ../tools/misc/graylog/plugins.nix { }
|
||||
);
|
||||
|
||||
gprof2dot = callPackage ../development/tools/profiling/gprof2dot { };
|
||||
|
||||
graphviz = callPackage ../tools/graphics/graphviz {
|
||||
inherit (darwin.apple_sdk.frameworks) ApplicationServices;
|
||||
};
|
||||
|
@ -400,6 +400,8 @@ in {
|
||||
|
||||
grandalf = callPackage ../development/python-modules/grandalf { };
|
||||
|
||||
gprof2dot = callPackage ../development/python-modules/gprof2dot { };
|
||||
|
||||
gsd = callPackage ../development/python-modules/gsd { };
|
||||
|
||||
gssapi = callPackage ../development/python-modules/gssapi { };
|
||||
|
Loading…
Reference in New Issue
Block a user