mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
b0a59de174
Version 2.2 was released: https://github.com/GPUOpen-Tools/radeon_gpu_profiler/releases/tag/v2.2 Qt was updated and supports wayland now (yay). Capturing and looking at the capture worked for me.
87 lines
1.9 KiB
Nix
87 lines
1.9 KiB
Nix
{ lib
|
|
, stdenv
|
|
, makeWrapper
|
|
, fetchurl
|
|
, autoPatchelfHook
|
|
, dbus
|
|
, fontconfig
|
|
, freetype
|
|
, glib
|
|
, libdrm
|
|
, libGLU
|
|
, libglvnd
|
|
, libICE
|
|
, libkrb5
|
|
, libSM
|
|
, libX11
|
|
, libxcb
|
|
, libXi
|
|
, libxkbcommon
|
|
, ncurses
|
|
, wayland
|
|
, zlib
|
|
}:
|
|
|
|
let
|
|
buildNum = "2024-06-26-1341";
|
|
in
|
|
stdenv.mkDerivation {
|
|
pname = "rgp";
|
|
version = "2.2";
|
|
|
|
src = fetchurl {
|
|
url = "https://gpuopen.com/download/radeon-developer-tool-suite/RadeonDeveloperToolSuite-${buildNum}.tgz";
|
|
hash = "sha256-mpm4hxWyunq6Z6kdSuk4jqnYOTuLFVe+XzXZvHJPf/Q=";
|
|
};
|
|
|
|
nativeBuildInputs = [ makeWrapper autoPatchelfHook ];
|
|
|
|
buildInputs = [
|
|
dbus
|
|
fontconfig
|
|
freetype
|
|
glib
|
|
libdrm
|
|
libGLU
|
|
libglvnd
|
|
libICE
|
|
libkrb5
|
|
libSM
|
|
libX11
|
|
libxcb
|
|
libXi
|
|
libxkbcommon
|
|
ncurses
|
|
wayland
|
|
zlib
|
|
];
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/opt/rgp $out/bin
|
|
cp -r . $out/opt/rgp/
|
|
|
|
chmod +x $out/opt/rgp/scripts/*
|
|
patchShebangs $out/opt/rgp/scripts
|
|
|
|
for prog in RadeonDeveloperPanel RadeonDeveloperService RadeonDeveloperServiceCLI RadeonGPUAnalyzer RadeonGPUProfiler RadeonMemoryVisualizer RadeonRaytracingAnalyzer rga rtda; do
|
|
# makeWrapper is needed so that executables are started from the opt
|
|
# directory, where qt.conf and other tools are.
|
|
# Unset Qt theme, it does not work if the nixos Qt version is different from the packaged one.
|
|
makeWrapper \
|
|
$out/opt/rgp/$prog \
|
|
$out/bin/$prog \
|
|
--unset QT_QPA_PLATFORMTHEME \
|
|
--unset QT_STYLE_OVERRIDE \
|
|
--prefix LD_LIBRARY_PATH : $out/opt/rgp/lib
|
|
done
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Tool from AMD that allows for deep inspection of GPU workloads";
|
|
homepage = "https://gpuopen.com/rgp/";
|
|
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
|
|
license = licenses.unfree;
|
|
platforms = [ "x86_64-linux" ];
|
|
maintainers = with maintainers; [ Flakebi ];
|
|
};
|
|
}
|