2018-01-09 18:05:11 +00:00
|
|
|
{ stdenv, fetchurl, libogg, pkgconfig, fetchpatch }:
|
2005-01-19 21:48:45 +00:00
|
|
|
|
2014-09-24 13:07:18 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2015-03-25 23:02:24 +00:00
|
|
|
name = "libvorbis-1.3.5";
|
2012-08-23 19:01:00 +00:00
|
|
|
|
2005-01-19 21:48:45 +00:00
|
|
|
src = fetchurl {
|
2012-02-08 19:54:16 +00:00
|
|
|
url = "http://downloads.xiph.org/releases/vorbis/${name}.tar.xz";
|
2015-03-25 23:02:24 +00:00
|
|
|
sha256 = "1lg1n3a6r41492r7in0fpvzc7909mc5ir9z0gd3qh2pz4yalmyal";
|
2005-01-19 21:48:45 +00:00
|
|
|
};
|
2009-01-20 09:50:05 +00:00
|
|
|
|
2016-08-29 00:30:01 +00:00
|
|
|
outputs = [ "out" "dev" "doc" ];
|
2014-06-22 10:39:07 +00:00
|
|
|
|
2018-01-09 18:05:11 +00:00
|
|
|
patches = [
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://github.com/xiph/vorbis/commit/a79ec216cd119069c68b8f3542c6a425a74ab993.patch";
|
|
|
|
sha256 = "0xhsa96n3dlh2l85bxpz4b9m78mfxfgi2ibhjp77110a0nvkjr6h";
|
|
|
|
name = "CVE-2017-14633";
|
|
|
|
})
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://github.com/xiph/vorbis/commit/c1c2831fc7306d5fbd7bc800324efd12b28d327f.patch";
|
|
|
|
sha256 = "17lb86105im6fc0h0cx5sn94p004jsdbbs2vj1m9ll6z9yb4rxwc";
|
|
|
|
name = "CVE-2017-14632";
|
|
|
|
})
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://gitlab.xiph.org/xiph/vorbis/uploads/a68cf70fa10c8081a633f77b5c6576b7/0001-CVE-2017-14160-make-sure-we-don-t-overflow.patch";
|
|
|
|
sha256 = "0v21p59cb3z77ch1v6q5dcrd733h91f3m8ifnd7kkkr8gzn17d5x";
|
|
|
|
name = "CVE-2017-14160";
|
|
|
|
})
|
|
|
|
];
|
2010-08-01 14:33:43 +00:00
|
|
|
|
2015-05-02 05:02:24 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2014-08-26 23:14:09 +00:00
|
|
|
propagatedBuildInputs = [ libogg ];
|
2012-08-23 19:01:00 +00:00
|
|
|
|
2014-06-12 22:53:21 +00:00
|
|
|
doCheck = true;
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2018-01-05 19:42:46 +00:00
|
|
|
homepage = https://xiph.org/vorbis/;
|
2014-06-12 22:53:21 +00:00
|
|
|
license = licenses.bsd3;
|
2015-12-05 21:41:25 +00:00
|
|
|
maintainers = [ maintainers.ehmry ];
|
2014-06-12 22:53:21 +00:00
|
|
|
platforms = platforms.all;
|
2010-08-01 14:33:43 +00:00
|
|
|
};
|
2005-01-19 21:48:45 +00:00
|
|
|
}
|