Skip to content

Commit

Permalink
gprof2dot: do not use pypy
Browse files Browse the repository at this point in the history
- The package does not seem to function with `pypy` (#33997)
- Our default interpreter should be used. If one wants extra performance
(e.g. using PyPy) they can override or modify the expression however
they want, but not in Nixpkgs.

(cherry picked from commit fbaf5fd)
  • Loading branch information
FRidh committed Jan 18, 2018
1 parent 3e3bee0 commit 780d1c4
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -2347,10 +2347,7 @@ with pkgs;
callPackage ../tools/misc/graylog/plugins.nix { }
);

gprof2dot = callPackage ../development/tools/profiling/gprof2dot {
# Using pypy provides significant performance improvements (~2x)
pythonPackages = pypyPackages;
};
gprof2dot = callPackage ../development/tools/profiling/gprof2dot { };

graphviz = callPackage ../tools/graphics/graphviz {
inherit (darwin.apple_sdk.frameworks) ApplicationServices;
Expand Down

0 comments on commit 780d1c4

Please sign in to comment.