nixos-configs/packages/gpu-screen-recorder/default.nix
matt1432 c91c8e703e
All checks were successful
Discord / discord commits (push) Has been skipped
fix(pkgs): improve versioning
2024-08-04 13:52:41 -04:00

78 lines
1.5 KiB
Nix

{
lib,
gpu-screen-recorder-src,
addOpenGLRunpath,
dbus,
ffmpeg,
libdrm,
libglvnd,
libpulseaudio,
libva,
makeWrapper,
meson,
ninja,
pipewire,
pkg-config,
stdenv,
wayland,
xorg,
...
}: let
inherit (lib) makeLibraryPath;
inherit (builtins) fromTOML readFile;
tag =
(fromTOML (readFile "${gpu-screen-recorder-src}/project.conf"))
.package
.version;
in
stdenv.mkDerivation {
pname = "gpu-screen-recorder";
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
xorg.libXcomposite
xorg.libXdamage
xorg.libXi
xorg.libXrandr
];
mesonFlags = [
"-Dcapabilities=false"
"-Dnvidia_suspend_fix=false"
"-Dsystemd=false"
];
fixupPhase = ''
wrapProgram $out/bin/gpu-screen-recorder \
--prefix LD_LIBRARY_PATH : "${
makeLibraryPath [
addOpenGLRunpath.driverLink
libglvnd
]
}"
'';
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"];
};
}