nixos-configs/packages/gpu-screen-recorder/generic.nix
matt1432 e221c4178f
All checks were successful
Discord / discord commits (push) Has been skipped
fix(gsr): remove from path of script
2024-11-26 20:48:07 -05:00

102 lines
1.9 KiB
Nix

{
lib,
gpu-screen-recorder-src,
addOpenGLRunpath,
dbus,
ffmpeg,
libdrm,
libglvnd,
libpulseaudio,
libva,
makeWrapper,
meson,
ninja,
pipewire,
pkg-config,
stdenv,
vulkan-headers,
wayland,
xorg,
pname,
...
}: let
inherit (lib) makeLibraryPath;
inherit (builtins) fromTOML readFile;
tag =
(fromTOML (readFile "${gpu-screen-recorder-src}/project.conf"))
.package
.version;
in
stdenv.mkDerivation {
inherit pname;
version = "${tag}+${gpu-screen-recorder-src.shortRev}";
src = gpu-screen-recorder-src;
nativeBuildInputs = [
pkg-config
makeWrapper
meson
ninja
];
buildInputs = [
dbus
libpulseaudio
pipewire
ffmpeg
wayland
libdrm
libva
vulkan-headers
xorg.libXcomposite
xorg.libXdamage
xorg.libXi
xorg.libXrandr
];
mesonFlags = [
"-Dcapabilities=false"
"-Dnvidia_suspend_fix=false"
"-Dsystemd=false"
];
fixupPhase = ''
runHook preFixup
wrapProgram $out/bin/gpu-screen-recorder \
--prefix LD_LIBRARY_PATH : "${
makeLibraryPath [
addOpenGLRunpath.driverLink
libglvnd
]
}"
runHook postFixup
'';
# This is needed to force gsr to lookup kms in PATH
# to get the security wrapper
postFixup =
if pname == "gpu-screen-recorder"
then
# bash
''
rm $out/bin/gsr-kms-server
''
else
# bash
''
rm $out/bin/gpu-screen-recorder
rm $out/bin/.gpu-screen-recorder-wrapped
'';
meta = {
description = "Screen recorder that has minimal impact on system performance by recording a window using the GPU only";
homepage = "https://git.dec05eba.com/gpu-screen-recorder/about/";
license = lib.licenses.gpl3Only;
platforms = ["x86_64-linux"];
mainProgram = pname;
};
}