nixos-configs/pkgs/gpu-screen-recorder/default.nix
matt1432 b869da9668
All checks were successful
Discord / discord commits (push) Has been skipped
chore: fix update script and update flake.lock
2024-06-11 16:42:47 -04:00

67 lines
1.2 KiB
Nix

{
addOpenGLRunpath,
stdenv,
ffmpeg,
gpu-screen-recorder-src,
lib,
libdrm,
libglvnd,
libpulseaudio,
libva,
makeWrapper,
meson,
ninja,
pkg-config,
wayland,
xorg,
...
}: let
inherit (lib) makeLibraryPath;
inherit (builtins) fromTOML readFile;
tag =
(fromTOML (readFile "${gpu-screen-recorder-src}/project.conf"))
.package
.version;
in
stdenv.mkDerivation {
name = "gpu-screen-recorder";
version = "${tag}+${gpu-screen-recorder-src.shortRev}";
src = gpu-screen-recorder-src;
nativeBuildInputs = [
pkg-config
makeWrapper
meson
ninja
];
buildInputs = [
libpulseaudio
ffmpeg
wayland
libdrm
libva
xorg.libXcomposite
xorg.libXrandr
];
postPatch = ''
# don't try to setcap/suid in a nix builder
substituteInPlace ./meson.build --replace \
"meson.add_install_script('extra/meson_post_install.sh')" \
"# meson.add_install_script('extra/meson_post_install.sh')"
'';
fixupPhase = ''
wrapProgram $out/bin/gpu-screen-recorder \
--prefix LD_LIBRARY_PATH : "${
makeLibraryPath [
addOpenGLRunpath.driverLink
libglvnd
]
}"
'';
}