Skip to content

Commit 780d1c4

Browse files
committedJan 18, 2018
gprof2dot: do not use pypy
- 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)
1 parent 3e3bee0 commit 780d1c4

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed
 

‎pkgs/top-level/all-packages.nix

+1-4
Original file line numberDiff line numberDiff line change
@@ -2347,10 +2347,7 @@ with pkgs;
23472347
callPackage ../tools/misc/graylog/plugins.nix { }
23482348
);
23492349

2350-
gprof2dot = callPackage ../development/tools/profiling/gprof2dot {
2351-
# Using pypy provides significant performance improvements (~2x)
2352-
pythonPackages = pypyPackages;
2353-
};
2350+
gprof2dot = callPackage ../development/tools/profiling/gprof2dot { };
23542351

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

0 commit comments

Comments
 (0)