2018-11-06 23:14:20 -08:00
|
|
|
{ stdenv
|
2018-11-27 02:11:03 -08:00
|
|
|
, fetchurl
|
2012-05-15 14:13:46 -07:00
|
|
|
|
2018-11-06 23:14:20 -08:00
|
|
|
, pkgconfig
|
2012-08-26 19:53:19 -07:00
|
|
|
|
2018-11-06 23:14:20 -08:00
|
|
|
, zlib
|
|
|
|
, libjpeg
|
|
|
|
, xz
|
|
|
|
}:
|
2012-08-26 19:53:19 -07:00
|
|
|
|
2018-11-06 23:14:20 -08:00
|
|
|
stdenv.mkDerivation rec {
|
2018-11-27 02:11:03 -08:00
|
|
|
version = "4.0.10";
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "libtiff";
|
2018-11-27 02:11:03 -08:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://download.osgeo.org/libtiff/tiff-${version}.tar.gz";
|
|
|
|
sha256 = "1r4np635gr6zlc0bic38dzvxia6iqzcrary4n1ylarzpr8fd2lic";
|
2018-11-06 23:14:20 -08:00
|
|
|
};
|
2017-01-18 06:50:58 -08:00
|
|
|
|
2019-10-02 13:47:24 -07:00
|
|
|
patches = [
|
|
|
|
(fetchurl {
|
|
|
|
url = "https://gitlab.com/libtiff/libtiff/commit/0c74a9f49b8d7a36b17b54a7428b3526d20f88a8.patch";
|
|
|
|
name = "CVE-2019-6128.patch";
|
|
|
|
sha256 = "03yvsfq6dxjd3v8ypfwz6cpz2iymqwcbawqqlmkh40dayi7fgizr";
|
|
|
|
})
|
2019-10-27 06:41:42 -07:00
|
|
|
(fetchurl {
|
|
|
|
url = "https://gitlab.com/libtiff/libtiff/commit/802d3cbf3043be5dce5317e140ccb1c17a6a2d39.patch";
|
|
|
|
name = "CVE-2019-7663.patch";
|
|
|
|
sha256 = "01nq5z1l55clasy4aqr0r2rgiaxay1108vni2nzd8lx4qc5q09hx";
|
|
|
|
})
|
2019-10-02 13:47:24 -07:00
|
|
|
# Manual backport of https://gitlab.com/libtiff/libtiff/commit/1b5e3b6a23827c33acf19ad50ce5ce78f12b3773.patch
|
|
|
|
./CVE-2019-14973.patch
|
|
|
|
];
|
|
|
|
|
2017-07-11 02:14:14 -07:00
|
|
|
outputs = [ "bin" "dev" "out" "man" "doc" ];
|
2014-08-26 16:14:09 -07:00
|
|
|
|
2018-11-27 02:11:03 -08:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2013-12-23 09:06:09 -08:00
|
|
|
|
|
|
|
propagatedBuildInputs = [ zlib libjpeg xz ]; #TODO: opengl support (bogus configure detection)
|
2009-10-29 07:19:58 -07:00
|
|
|
|
2012-05-15 14:13:46 -07:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2018-01-07 23:19:47 -08:00
|
|
|
doCheck = true; # not cross;
|
2013-12-23 09:06:09 -08:00
|
|
|
|
2014-07-30 09:04:57 -07:00
|
|
|
meta = with stdenv.lib; {
|
2009-10-29 07:19:58 -07:00
|
|
|
description = "Library and utilities for working with the TIFF image file format";
|
2016-11-23 17:33:32 -08:00
|
|
|
homepage = http://download.osgeo.org/libtiff;
|
2014-07-30 09:04:57 -07:00
|
|
|
license = licenses.libtiff;
|
2014-08-12 10:07:05 -07:00
|
|
|
platforms = platforms.unix;
|
2009-10-29 07:19:58 -07:00
|
|
|
};
|
2003-11-06 07:24:19 -08:00
|
|
|
}
|