r128gain: replace ffmpeg_3 with ffmpeg

See https://github.com/NixOS/nixpkgs/issues/120705 for the rationale.
wip/yesman
Aluísio Augusto Silva Gonçalves 3 years ago
parent 8e4fe32876
commit 2efafe69ef
No known key found for this signature in database
GPG Key ID: DA6EA2FACDB1CBD2
  1. 12
      pkgs/applications/audio/r128gain/default.nix

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

Loading…
Cancel
Save