summary refs log tree commit diff
path: root/pkgs/applications/audio
diff options
context:
space:
mode:
authorDoron Behar <doron.behar@gmail.com>2020-07-03 14:44:50 +0300
committerDoron Behar <doron.behar@gmail.com>2020-07-03 14:44:50 +0300
commitd2b35f4a051f84fa95a63e03c454eaa3758d4eb5 (patch)
tree441ac0a6329e8269239f224d2496316c1c545685 /pkgs/applications/audio
parent1351ed529dbbd563e34d65194ca31e491627fa62 (diff)
downloadnixpkgs-d2b35f4a051f84fa95a63e03c454eaa3758d4eb5.tar
nixpkgs-d2b35f4a051f84fa95a63e03c454eaa3758d4eb5.tar.gz
nixpkgs-d2b35f4a051f84fa95a63e03c454eaa3758d4eb5.tar.bz2
nixpkgs-d2b35f4a051f84fa95a63e03c454eaa3758d4eb5.tar.lz
nixpkgs-d2b35f4a051f84fa95a63e03c454eaa3758d4eb5.tar.xz
nixpkgs-d2b35f4a051f84fa95a63e03c454eaa3758d4eb5.tar.zst
nixpkgs-d2b35f4a051f84fa95a63e03c454eaa3758d4eb5.zip
bs1770gain: use latest ffmpeg
Diffstat (limited to 'pkgs/applications/audio')
-rw-r--r--pkgs/applications/audio/bs1770gain/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/audio/bs1770gain/default.nix b/pkgs/applications/audio/bs1770gain/default.nix
index 47de14ecb25..76a78935619 100644
--- a/pkgs/applications/audio/bs1770gain/default.nix
+++ b/pkgs/applications/audio/bs1770gain/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, ffmpeg_3, sox }:
+{ stdenv, fetchurl, ffmpeg, sox }:
 
 stdenv.mkDerivation rec {
   pname = "bs1770gain";
@@ -9,7 +9,7 @@ stdenv.mkDerivation rec {
     sha256 = "1p6yz5q7czyf9ard65sp4kawdlkg40cfscr3b24znymmhs3p7rbk";
   };
 
-  buildInputs = [ ffmpeg_3 sox ];
+  buildInputs = [ ffmpeg sox ];
 
   NIX_CFLAGS_COMPILE = "-Wno-error";