summary refs log tree commit diff
path: root/pkgs/applications/audio
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2021-04-27 13:21:47 +0200
committerGitHub <noreply@github.com>2021-04-27 13:21:47 +0200
commitf7a289156c1b08456cae61454daab7fa625477c3 (patch)
tree84827a2a075ed970e8e0d6e0a08c02155cb088c9 /pkgs/applications/audio
parent7c137b57be026d2581bbe40d555be79da5aaa03a (diff)
parent2efafe69ef0f83bb9c68b889db9055228ba46ef7 (diff)
downloadnixpkgs-f7a289156c1b08456cae61454daab7fa625477c3.tar
nixpkgs-f7a289156c1b08456cae61454daab7fa625477c3.tar.gz
nixpkgs-f7a289156c1b08456cae61454daab7fa625477c3.tar.bz2
nixpkgs-f7a289156c1b08456cae61454daab7fa625477c3.tar.lz
nixpkgs-f7a289156c1b08456cae61454daab7fa625477c3.tar.xz
nixpkgs-f7a289156c1b08456cae61454daab7fa625477c3.tar.zst
nixpkgs-f7a289156c1b08456cae61454daab7fa625477c3.zip
Merge pull request #120783 from AluisioASG/aasg/delete-ffmpeg_3-more
r128gain: replace ffmpeg_3 with ffmpeg
Diffstat (limited to 'pkgs/applications/audio')
-rw-r--r--pkgs/applications/audio/r128gain/default.nix12
1 files changed, 5 insertions, 7 deletions
diff --git a/pkgs/applications/audio/r128gain/default.nix b/pkgs/applications/audio/r128gain/default.nix
index 3044acb3264..96053d08d00 100644
--- a/pkgs/applications/audio/r128gain/default.nix
+++ b/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 ];