nixpkgs/pkgs/tools/graphics/gfxreconstruct/default.nix
2024-03-26 02:13:32 +00:00

69 lines
1.4 KiB
Nix

{ stdenv
, fetchFromGitHub
, lib
, cmake
, makeWrapper
, pkg-config
, python3
, wayland
, libX11
, libxcb
, lz4
, vulkan-loader
, xcbutilkeysyms
, zlib
, zstd
}:
stdenv.mkDerivation rec {
pname = "gfxreconstruct";
version = "1.0.3";
src = fetchFromGitHub {
owner = "LunarG";
repo = "gfxreconstruct";
rev = "v${version}";
hash = "sha256-4qNAMPswsYtzHmTKr+waDLoWa9xex5hvX1Og/KibiBg=";
fetchSubmodules = true;
};
buildInputs = [
libX11
libxcb
lz4
python3
wayland
xcbutilkeysyms
zlib
zstd
];
nativeBuildInputs = [
cmake
makeWrapper
pkg-config
];
# The python script searches in subfolders, but we want to search in the same bin directory
prePatch = ''
substituteInPlace tools/gfxrecon/gfxrecon.py \
--replace "scriptdir, '..', cmd" 'scriptdir'
'';
# Fix the path to the layer library
postInstall = ''
substituteInPlace $out/share/vulkan/explicit_layer.d/VkLayer_gfxreconstruct.json \
--replace 'libVkLayer_gfxreconstruct.so' "$out/lib/libVkLayer_gfxreconstruct.so"
wrapProgram $out/bin/gfxrecon-replay \
--prefix LD_LIBRARY_PATH : ${lib.makeLibraryPath [ vulkan-loader ]}
'';
meta = with lib; {
description = "Graphics API Capture and Replay Tools";
homepage = "https://github.com/LunarG/gfxreconstruct/";
license = licenses.mit;
maintainers = with maintainers; [ Flakebi ];
platforms = platforms.linux;
};
}