about summary refs log tree commit diff
path: root/pkgs/development/tools/profiling
diff options
context:
space:
mode:
authorPhilipp Middendorf <middendorf@plapadoo.de>2019-01-25 16:18:41 +0100
committerPhilipp Middendorf <middendorf@plapadoo.de>2019-01-30 13:32:44 +0100
commita04e81898cf9cb9325a5a3cb277b3edee0219557 (patch)
tree357466794376e85f7faba4321593e3c83c238f71 /pkgs/development/tools/profiling
parent4f832c5ad8ef3bae9ccaa8bfa7af516b159f9cb5 (diff)
downloadnixlib-a04e81898cf9cb9325a5a3cb277b3edee0219557.tar
nixlib-a04e81898cf9cb9325a5a3cb277b3edee0219557.tar.gz
nixlib-a04e81898cf9cb9325a5a3cb277b3edee0219557.tar.bz2
nixlib-a04e81898cf9cb9325a5a3cb277b3edee0219557.tar.lz
nixlib-a04e81898cf9cb9325a5a3cb277b3edee0219557.tar.xz
nixlib-a04e81898cf9cb9325a5a3cb277b3edee0219557.tar.zst
nixlib-a04e81898cf9cb9325a5a3cb277b3edee0219557.zip
gprof2dot: 2015-04-27 -> 2017-09-19
Diffstat (limited to 'pkgs/development/tools/profiling')
-rw-r--r--pkgs/development/tools/profiling/gprof2dot/default.nix19
1 files changed, 0 insertions, 19 deletions
diff --git a/pkgs/development/tools/profiling/gprof2dot/default.nix b/pkgs/development/tools/profiling/gprof2dot/default.nix
deleted file mode 100644
index 2f0b03ab7e37..000000000000
--- a/pkgs/development/tools/profiling/gprof2dot/default.nix
+++ /dev/null
@@ -1,19 +0,0 @@
-{ stdenv, fetchFromGitHub, pythonPackages }:
-
-pythonPackages.buildPythonApplication {
-  name = "gprof2dot-2015-04-27";
-
-  src = fetchFromGitHub {
-    owner = "jrfonseca";
-    repo = "gprof2dot";
-    rev = "6fbb81559609c12e7c64ae5dce7d102a414a7514";
-    sha256 = "1fff7w6dm6lld11hp2ij97f85ma1154h62dvchq19c5jja3zjw3c";
-  };
-
-  meta = with stdenv.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;
-  };
-}