diff --git a/pkgs/applications/video/gpu-screen-recorder/default.nix b/pkgs/applications/video/gpu-screen-recorder/default.nix index 89fda1154232..663d82640247 100644 --- a/pkgs/applications/video/gpu-screen-recorder/default.nix +++ b/pkgs/applications/video/gpu-screen-recorder/default.nix @@ -1,22 +1,23 @@ -{ stdenv -, lib -, fetchurl -, makeWrapper -, meson -, ninja -, pkg-config -, libXcomposite -, libpulseaudio -, ffmpeg -, wayland -, libdrm -, libva -, libglvnd -, libXdamage -, libXi -, libXrandr -, libXfixes -, wrapperDir ? "/run/wrappers/bin" +{ + stdenv, + lib, + fetchurl, + makeWrapper, + meson, + ninja, + pkg-config, + libXcomposite, + libpulseaudio, + ffmpeg, + wayland, + libdrm, + libva, + libglvnd, + libXdamage, + libXi, + libXrandr, + libXfixes, + wrapperDir ? "/run/wrappers/bin", }: stdenv.mkDerivation { @@ -51,9 +52,7 @@ stdenv.mkDerivation { libXfixes ]; - patches = [ - ./0001-Don-t-install-systemd-unit-files-using-absolute-path.patch - ]; + patches = [ ./0001-Don-t-install-systemd-unit-files-using-absolute-path.patch ]; mesonFlags = [ "-Dsystemd=true" @@ -73,6 +72,7 @@ stdenv.mkDerivation { meta = { description = "Screen recorder that has minimal impact on system performance by recording a window using the GPU only"; + mainProgram = "gpu-screen-recorder"; homepage = "https://git.dec05eba.com/gpu-screen-recorder/about/"; license = lib.licenses.gpl3Only; maintainers = [ lib.maintainers.babbaj ];