2017-10-24 14:25:16 +03:00
|
|
|
{ stdenv, fetchurl, fetchpatch, SDL, libpng, libjpeg, libtiff, libungif, libXpm }:
|
2009-03-03 16:27:40 +03:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2016-08-22 06:24:00 +03:00
|
|
|
name = "SDL_image-${version}";
|
|
|
|
version = "1.2.12";
|
2008-02-07 00:17:42 +03:00
|
|
|
|
2012-12-06 15:02:17 +04:00
|
|
|
src = fetchurl {
|
2018-06-28 21:43:35 +03:00
|
|
|
url = "https://www.libsdl.org/projects/SDL_image/release/${name}.tar.gz";
|
2012-12-06 15:02:17 +04:00
|
|
|
sha256 = "16an9slbb8ci7d89wakkmyfvp7c0cval8xw4hkg0842nhhlp540b";
|
2008-02-07 00:17:42 +03:00
|
|
|
};
|
2007-08-09 21:33:18 +04:00
|
|
|
|
2017-10-24 14:25:16 +03:00
|
|
|
patches = [
|
|
|
|
(fetchpatch {
|
|
|
|
name = "CVE-2017-2887";
|
|
|
|
url = "https://hg.libsdl.org/SDL_image/raw-diff/318484db0705/IMG_xcf.c";
|
|
|
|
sha256 = "140dyszz9hkpgwjdiwp1b7jdd8f8l5d862xdaf3ml4cimga1h5kv";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2017-11-11 04:22:15 +03:00
|
|
|
configureFlags = stdenv.lib.optional stdenv.isDarwin "--disable-sdltest";
|
|
|
|
|
2013-09-06 05:47:49 +04:00
|
|
|
buildInputs = [ SDL libpng libjpeg libtiff libungif libXpm ];
|
2007-08-09 21:33:18 +04:00
|
|
|
|
2013-09-06 05:47:49 +04:00
|
|
|
meta = with stdenv.lib; {
|
2009-03-03 16:27:40 +03:00
|
|
|
description = "SDL image library";
|
2016-08-22 06:24:00 +03:00
|
|
|
homepage = "http://www.libsdl.org/projects/SDL_image/";
|
2013-09-06 05:47:49 +04:00
|
|
|
maintainers = with maintainers; [ lovek323 ];
|
2015-03-05 23:56:41 +03:00
|
|
|
platforms = platforms.unix;
|
2018-08-19 11:13:06 +03:00
|
|
|
license = licenses.zlib;
|
2007-08-09 21:33:18 +04:00
|
|
|
};
|
2009-03-03 16:27:40 +03:00
|
|
|
}
|