ffmpeg: set mainProgram

Needed for e.g. `nix run nixpkgs#ffmpeg-full` otherwise tries to exec
`ffmpeg-full`.
This commit is contained in:
Andrew Marshall 2023-09-30 13:33:19 -04:00 committed by Bjørn Forsman
parent 94f1803aaf
commit a473ea53e4

View file

@ -699,5 +699,6 @@ stdenv.mkDerivation (finalAttrs: {
pkgConfigModules = [ "libavutil" ];
platforms = platforms.all;
maintainers = with maintainers; [ atemu ];
mainProgram = "ffmpeg";
};
})