lame: 3.99.5 -> 3.100 for multiple CVEs

Fixes CVE-2017-9410, CVE-2017-9411, CVE-2017-9412.
This commit is contained in:
Franz Pletz
2017-10-24 13:20:38 +02:00
parent 5072f4792e
commit f269f31985
2 changed files with 3 additions and 38 deletions
+3 -5
View File
@@ -23,15 +23,13 @@ in
with stdenv.lib;
stdenv.mkDerivation rec {
name = "lame-${version}";
version = "3.99.5";
version = "3.100";
src = fetchurl {
url = "mirror://sourceforge/lame/${name}.tar.gz";
sha256 = "1zr3kadv35ii6liia0bpfgxpag27xcivp571ybckpbz4b10nnd14";
sha256 = "07nsn5sy3a8xbmw1bidxnsj5fj6kg9ai04icmqw40ybkp353dznx";
};
patches = [ ./gcc-4.9.patch ];
outputs = [ "out" "lib" "doc" ]; # a small single header
outputMan = "out";
@@ -61,7 +59,7 @@ stdenv.mkDerivation rec {
description = "A high quality MPEG Audio Layer III (MP3) encoder";
homepage = http://lame.sourceforge.net;
license = licenses.lgpl2;
maintainers = with maintainers; [ codyopel ];
maintainers = with maintainers; [ codyopel fpletz ];
platforms = platforms.all;
};
}