about summary refs log tree commit diff
path: root/pkgs/os-specific/linux/trace-cmd/kernelshark.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/os-specific/linux/trace-cmd/kernelshark.nix')
-rw-r--r--pkgs/os-specific/linux/trace-cmd/kernelshark.nix35
1 files changed, 0 insertions, 35 deletions
diff --git a/pkgs/os-specific/linux/trace-cmd/kernelshark.nix b/pkgs/os-specific/linux/trace-cmd/kernelshark.nix
deleted file mode 100644
index 4251235469cc..000000000000
--- a/pkgs/os-specific/linux/trace-cmd/kernelshark.nix
+++ /dev/null
@@ -1,35 +0,0 @@
-{ lib, stdenv, fetchzip, qtbase, qtscxml, cmake, asciidoc
-, docbook_xsl, json_c, mesa_glu, freeglut, trace-cmd, pkg-config
-, libtraceevent, libtracefs, freefont_ttf, wrapQtAppsHook, qtwayland
-}:
-
-stdenv.mkDerivation (finalAttrs: {
-  pname = "kernelshark";
-  version = "2.3.1";
-
-  src = fetchzip {
-    url = "https://git.kernel.org/pub/scm/utils/trace-cmd/kernel-shark.git/snapshot/kernelshark-v${finalAttrs.version}.tar.gz";
-    hash = "sha256-KV8ahV2koX7OL1C42H5If14e7m54jv0DlZ1dNsVRUWE=";
-  };
-
-  outputs = [ "out" ];
-
-  nativeBuildInputs = [ pkg-config cmake wrapQtAppsHook ];
-
-  buildInputs = [ qtbase qtscxml qtwayland json_c mesa_glu freeglut libtraceevent libtracefs trace-cmd ];
-
-  cmakeFlags = [
-    "-D_INSTALL_PREFIX=${placeholder "out"}"
-    "-D_POLKIT_INSTALL_PREFIX=${placeholder "out"}"
-    "-DPKG_CONGIG_DIR=${placeholder "out"}/lib/pkgconfig"
-    "-DTT_FONT_FILE=${freefont_ttf}/share/fonts/truetype/FreeSans.ttf"
-  ];
-
-  meta = with lib; {
-    description = "GUI for trace-cmd which is an interface for the Linux kernel ftrace subsystem";
-    homepage    = "https://kernelshark.org/";
-    license     = licenses.gpl2;
-    platforms   = platforms.linux;
-    maintainers = with maintainers; [ basvandijk ];
-  };
-})