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.
  • Loading branch information
FRidh committed Jan 18, 2018
1 parent 43909be commit fbaf5fd
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -2481,10 +2481,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 fbaf5fd

Please sign in to comment.