From e8af5dcd8eaab5aae4cd85940e4714066adaf95b Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Wed, 15 Feb 2017 08:43:14 +0100 Subject: [PATCH] ffmpeg: 3.2.2 -> 3.2.4 for multiple CVEs Fixes CVE-2017-5024 & CVE-2017-5025. See https://ffmpeg.org/security.html. --- pkgs/development/libraries/ffmpeg/3.2.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/ffmpeg/3.2.nix b/pkgs/development/libraries/ffmpeg/3.2.nix index 7587ca7c3cac..17ed6fb0e4ba 100644 --- a/pkgs/development/libraries/ffmpeg/3.2.nix +++ b/pkgs/development/libraries/ffmpeg/3.2.nix @@ -5,9 +5,9 @@ }@args: callPackage ./generic.nix (args // rec { - version = "${branch}.2"; + version = "${branch}.4"; branch = "3.2"; - sha256 = "0srn788i4k5827sl8vmds6133vjy9ygsmgzwn40n3l5qs5b9l4hb"; + sha256 = "194n8hwmz2rpgh2rz8bc3mnxjyj3jh090mqp7k76msg9la9kbyn0"; darwinFrameworks = [ Cocoa CoreMedia ]; patches = stdenv.lib.optional stdenv.isDarwin ./sdk_detection.patch; })