about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorFranz Pletz <fpletz@fnordicwalking.de>2017-02-15 08:43:14 +0100
committerFranz Pletz <fpletz@fnordicwalking.de>2017-02-15 09:35:28 +0100
commite8af5dcd8eaab5aae4cd85940e4714066adaf95b (patch)
treef7647273a6fe2e9d44e3e8d7167955a432880059 /pkgs
parentd2426f0aa877369ed7130075a7afc967004b69c0 (diff)
downloadnixlib-e8af5dcd8eaab5aae4cd85940e4714066adaf95b.tar
nixlib-e8af5dcd8eaab5aae4cd85940e4714066adaf95b.tar.gz
nixlib-e8af5dcd8eaab5aae4cd85940e4714066adaf95b.tar.bz2
nixlib-e8af5dcd8eaab5aae4cd85940e4714066adaf95b.tar.lz
nixlib-e8af5dcd8eaab5aae4cd85940e4714066adaf95b.tar.xz
nixlib-e8af5dcd8eaab5aae4cd85940e4714066adaf95b.tar.zst
nixlib-e8af5dcd8eaab5aae4cd85940e4714066adaf95b.zip
ffmpeg: 3.2.2 -> 3.2.4 for multiple CVEs
Fixes CVE-2017-5024 & CVE-2017-5025.

See https://ffmpeg.org/security.html.
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/libraries/ffmpeg/3.2.nix4
1 files 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;
 })