2021-02-12 21:11:11 +00:00
|
|
|
{ lib, stdenv, fetchurl, fetchpatch
|
|
|
|
, libX11, libXext, xorgproto, libjpeg, giflib, libtiff, libpng
|
|
|
|
}:
|
2006-08-13 09:46:54 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "imlib-1.9.15";
|
|
|
|
src = fetchurl {
|
2020-04-01 01:11:51 +00:00
|
|
|
url = "http://tarballs.nixos.org/imlib-1.9.15.tar.gz";
|
2014-10-12 14:13:21 +00:00
|
|
|
sha256 = "0ggjxyvgp4pxc0b88v40xj9daz90518ydnycw7qax011gxpr12d3";
|
2006-08-13 09:46:54 +00:00
|
|
|
};
|
|
|
|
|
2019-07-20 20:42:31 +00:00
|
|
|
patches = [
|
|
|
|
(fetchpatch {
|
|
|
|
name = "CVE-2007-3568.patch";
|
2020-04-01 01:11:51 +00:00
|
|
|
url = "https://gitweb.gentoo.org/repo/gentoo.git/plain/media-libs/imlib/files/imlib-1.9.15-bpp16-CVE-2007-3568.patch";
|
2019-07-20 20:42:31 +00:00
|
|
|
sha256 = "0lxfibi094gki39sq1w4p0hcx25xlk0875agbhjkjngzx862wvbg";
|
|
|
|
})
|
2021-02-12 21:11:11 +00:00
|
|
|
|
|
|
|
# The following two patches fix the build with recent giflib.
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://gitweb.gentoo.org/repo/gentoo.git/plain/media-libs/imlib/files/imlib-1.9.15-giflib51-1.patch?id=c6d0ed89ad5653421f21cbf3b3d40fd9a1361828";
|
|
|
|
sha256 = "0jynlhxcyjiwnz1m8j48xwz4z5csgyg03jfjc8xgpvvcyid4m65l";
|
|
|
|
})
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://gitweb.gentoo.org/repo/gentoo.git/plain/media-libs/imlib/files/imlib-1.9.15-giflib51-2.patch?id=c6d0ed89ad5653421f21cbf3b3d40fd9a1361828";
|
|
|
|
sha256 = "164x7rd992930rqllmr89p5ahfmbz37ipi8x0igd8gkvc8a4fd5x";
|
|
|
|
})
|
2019-07-20 20:42:31 +00:00
|
|
|
];
|
|
|
|
|
2018-07-25 21:44:21 +00:00
|
|
|
configureFlags = [
|
|
|
|
"--disable-shm"
|
|
|
|
"--x-includes=${libX11.dev}/include"
|
|
|
|
"--x-libraries=${libX11.out}/lib"
|
|
|
|
];
|
2006-08-13 09:46:54 +00:00
|
|
|
|
2021-02-12 21:11:11 +00:00
|
|
|
buildInputs = [ libjpeg libXext libX11 xorgproto libtiff giflib libpng ];
|
2016-08-02 16:06:29 +00:00
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
meta = with lib; {
|
2018-11-01 19:47:54 +00:00
|
|
|
description = "An image loading and rendering library for X11";
|
|
|
|
platforms = platforms.unix;
|
2021-02-12 21:11:11 +00:00
|
|
|
license = with licenses; [ gpl2Only lgpl2Only ];
|
2016-08-02 16:06:29 +00:00
|
|
|
};
|
2006-08-13 09:46:54 +00:00
|
|
|
}
|