summary refs log tree commit diff
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2018-01-18 09:38:56 +0100
committerFrederik Rietdijk <fridh@fridh.nl>2018-01-18 09:39:04 +0100
commitfbaf5fd6772a935ba9d40283fefec4bd374a8a3f (patch)
treead105f3e6a83a30b2c4e3930395beb699c5158b1
parent43909be63c2a6ba2833270499c477915833a4dac (diff)
downloadnixlib-fbaf5fd6772a935ba9d40283fefec4bd374a8a3f.tar
nixlib-fbaf5fd6772a935ba9d40283fefec4bd374a8a3f.tar.gz
nixlib-fbaf5fd6772a935ba9d40283fefec4bd374a8a3f.tar.bz2
nixlib-fbaf5fd6772a935ba9d40283fefec4bd374a8a3f.tar.lz
nixlib-fbaf5fd6772a935ba9d40283fefec4bd374a8a3f.tar.xz
nixlib-fbaf5fd6772a935ba9d40283fefec4bd374a8a3f.tar.zst
nixlib-fbaf5fd6772a935ba9d40283fefec4bd374a8a3f.zip
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.
-rw-r--r--pkgs/top-level/all-packages.nix5
1 files changed, 1 insertions, 4 deletions
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index 08ebe90e5e79..7acb01763c63 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -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;