r128gain: replace ffmpeg_3 with ffmpeg

See https://github.com/NixOS/nixpkgs/issues/120705 for the rationale.
This commit is contained in:
Aluísio Augusto Silva Gonçalves 2021-04-26 16:57:30 -03:00
parent 8e4fe32876
commit 2efafe69ef
No known key found for this signature in database
GPG key ID: DA6EA2FACDB1CBD2

View file

@ -3,7 +3,7 @@
, genericUpdater , genericUpdater
, substituteAll , substituteAll
, common-updater-scripts , common-updater-scripts
, ffmpeg_3 , ffmpeg
, python3Packages , python3Packages
, sox , sox
}: }:
@ -20,12 +20,10 @@ python3Packages.buildPythonApplication rec {
}; };
patches = [ patches = [
( (substituteAll {
substituteAll { src = ./ffmpeg-location.patch;
src = ./ffmpeg-location.patch; inherit ffmpeg;
ffmpeg = ffmpeg_3; })
}
)
]; ];
propagatedBuildInputs = with python3Packages; [ crcmod ffmpeg-python mutagen tqdm ]; propagatedBuildInputs = with python3Packages; [ crcmod ffmpeg-python mutagen tqdm ];