about summary refs log tree commit diff
path: root/pkgs/development/libraries
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2014-12-16 21:31:29 +0100
committerVladimír Čunát <vcunat@gmail.com>2014-12-16 21:33:24 +0100
commit304484a753b3f8024876ae02958e97569703cd93 (patch)
treeedda9751288b0367570c61b5ea83efc566a9350b /pkgs/development/libraries
parentcbe467ef9986289710ca49ab728d3bae22ba7ac4 (diff)
downloadnixlib-304484a753b3f8024876ae02958e97569703cd93.tar
nixlib-304484a753b3f8024876ae02958e97569703cd93.tar.gz
nixlib-304484a753b3f8024876ae02958e97569703cd93.tar.bz2
nixlib-304484a753b3f8024876ae02958e97569703cd93.tar.lz
nixlib-304484a753b3f8024876ae02958e97569703cd93.tar.xz
nixlib-304484a753b3f8024876ae02958e97569703cd93.tar.zst
nixlib-304484a753b3f8024876ae02958e97569703cd93.zip
ffmpeg_2_3: use 2.2 instead of 2.3
2.3 branch is unmaintained and was critically vulnerable (I thank to monitor).
Diffstat (limited to 'pkgs/development/libraries')
-rw-r--r--pkgs/development/libraries/ffmpeg/2.2.x.nix (renamed from pkgs/development/libraries/ffmpeg/2.3.x.nix)4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/ffmpeg/2.3.x.nix b/pkgs/development/libraries/ffmpeg/2.2.x.nix
index 2b4b0569b552..51a6bb8c880c 100644
--- a/pkgs/development/libraries/ffmpeg/2.3.x.nix
+++ b/pkgs/development/libraries/ffmpeg/2.2.x.nix
@@ -5,12 +5,12 @@
 }:
 
 stdenv.mkDerivation rec {
-  version = "2.3.3";
+  version = "2.2.11";
   name = "ffmpeg-${version}";
 
   src = fetchurl {
     url = "http://www.ffmpeg.org/releases/${name}.tar.bz2";
-    sha256 = "0ik4c06anh49r5b0d3rq9if4zl6ysjsa341655kzw22fl880sk5v";
+    sha256 = "06sli7xvihh97ss6a2mkdq4dcj3rg1w8zffrmjfc1hvyjxhc8f2r";
   };
 
   subtitleSupport = config.ffmpeg.subtitle or true;