86 lines
2.5 KiB
Nix
86 lines
2.5 KiB
Nix
|
{ lib
|
||
|
, stdenv
|
||
|
, fetchFromGitHub
|
||
|
, cmake
|
||
|
, pkg-config
|
||
|
, ninja
|
||
|
, wayland
|
||
|
, wayland-scanner
|
||
|
, obs-studio
|
||
|
, libffi
|
||
|
, libX11
|
||
|
, libXau
|
||
|
, libXdmcp
|
||
|
, libxcb
|
||
|
, vulkan-headers
|
||
|
, vulkan-loader
|
||
|
, libGL
|
||
|
, obs-vkcapture32
|
||
|
}:
|
||
|
|
||
|
stdenv.mkDerivation (finalAttrs: {
|
||
|
pname = "obs-vkcapture";
|
||
|
version = "1.5.1";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "nowrep";
|
||
|
repo = "obs-vkcapture";
|
||
|
rev = "v${finalAttrs.version}";
|
||
|
hash = "sha256-RIDsT6eL6bUfqPiyPlecnZHu5OorcJb3Xal8pjdOpAA=";
|
||
|
};
|
||
|
|
||
|
cmakeFlags = lib.optionals stdenv.hostPlatform.isi686 [
|
||
|
# We don't want to build the plugin for 32bit. The library integrates with
|
||
|
# the 64bit plugin but it's necessary to be loaded into 32bit games.
|
||
|
"-DBUILD_PLUGIN=OFF"
|
||
|
];
|
||
|
|
||
|
nativeBuildInputs = [ cmake ninja pkg-config wayland-scanner ];
|
||
|
buildInputs = [
|
||
|
libGL
|
||
|
libffi
|
||
|
libX11
|
||
|
libXau
|
||
|
libXdmcp
|
||
|
libxcb
|
||
|
vulkan-headers
|
||
|
vulkan-loader
|
||
|
wayland
|
||
|
]
|
||
|
++ lib.optionals (!stdenv.hostPlatform.isi686) [
|
||
|
obs-studio
|
||
|
];
|
||
|
|
||
|
postPatch = ''
|
||
|
substituteInPlace src/glinject.c \
|
||
|
--replace "libGLX.so.0" "${lib.getLib libGL}/lib/libGLX.so.0" \
|
||
|
--replace "libX11.so.6" "${lib.getLib libX11}/lib/libX11.so.6" \
|
||
|
--replace "libX11-xcb.so.1" "${lib.getLib libX11}/lib/libX11-xcb.so.1" \
|
||
|
--replace "libxcb-dri3.so.0" "${lib.getLib libxcb}/lib/libxcb-dri3.so.0" \
|
||
|
--replace "libEGL.so.1" "${lib.getLib libGL}/lib/libEGL.so.1" \
|
||
|
--replace "libvulkan.so.1" "${lib.getLib vulkan-loader}/lib/libvulkan.so.1"
|
||
|
'';
|
||
|
|
||
|
# Support 32bit Vulkan applications by linking in the 32bit Vulkan layer and
|
||
|
# the wrapper executables. Note that vkcapture and glcapture are themselves
|
||
|
# wrapper scripts that simply exec gamecapture and print a warning but because
|
||
|
# they take gamecapture from PATH, we must link them to the 32 bit gamecapture
|
||
|
# directly.
|
||
|
postInstall = lib.optionalString (stdenv.hostPlatform.system == "x86_64-linux") ''
|
||
|
ln -s ${obs-vkcapture32}/share/vulkan/implicit_layer.d/obs_vkcapture_32.json \
|
||
|
"$out/share/vulkan/implicit_layer.d/"
|
||
|
for bin in ${obs-vkcapture32}/bin/* ; do
|
||
|
ln -s ${obs-vkcapture32}/bin/obs-gamecapture "$out/bin/$(basename "$bin")32"
|
||
|
done
|
||
|
'';
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "OBS Linux Vulkan/OpenGL game capture";
|
||
|
homepage = "https://github.com/nowrep/obs-vkcapture";
|
||
|
changelog = "https://github.com/nowrep/obs-vkcapture/releases/tag/v${finalAttrs.version}";
|
||
|
maintainers = with maintainers; [ atila pedrohlc ];
|
||
|
license = licenses.gpl2Only;
|
||
|
platforms = platforms.linux;
|
||
|
};
|
||
|
})
|