Skip to content

Commit 4e2b190

Browse files
committedMay 24, 2017
vlc: 2.2.4 -> 2.2.5.1
Fixes a nasty vulnerability caused by broken subtitle handling: http://blog.checkpoint.com/2017/05/23/hacked-in-translation/
1 parent a43e104 commit 4e2b190

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed
 

‎pkgs/applications/video/vlc/default.nix

+2-8
Original file line numberDiff line numberDiff line change
@@ -20,19 +20,13 @@ assert (!withQt5 -> qt4 != null);
2020

2121
stdenv.mkDerivation rec {
2222
name = "vlc-${version}";
23-
version = "2.2.4";
23+
version = "2.2.5.1";
2424

2525
src = fetchurl {
2626
url = "http://get.videolan.org/vlc/${version}/${name}.tar.xz";
27-
sha256 = "1gjkrwlg8ab3skzl67cxb9qzg4187ifckd1z9kpy11q058fyjchn";
27+
sha256 = "1k51vm6piqlrnld7sxyg0s4kdkd3lan97lmy3v5wdh3qyll8m2xj";
2828
};
2929

30-
patches = optional withQt5 (fetchurl {
31-
name = "Fix-build-using-old-GCC-intrinsics.patch";
32-
url = "https://patches.videolan.org/patch/14061/raw/";
33-
sha256 = "16v4k7378a590diz11bdvdaqi9cpf6333hp5wr6v5sfrsma8qvpx";
34-
});
35-
3630
# Comment-out the Qt 5.5 version check, as we do apply the relevant patch.
3731
# https://trac.videolan.org/vlc/ticket/16497
3832
postPatch = if (!withQt5) then null else

0 commit comments

Comments
 (0)