2011-06-17 06:18:27 -07:00
|
|
|
{ stdenv, fetchurl, x11, libjpeg, libtiff, libungif, libpng, bzip2, pkgconfig }:
|
2007-03-05 05:44:27 -08:00
|
|
|
|
2011-09-26 06:13:45 -07:00
|
|
|
stdenv.mkDerivation rec {
|
2014-03-03 02:08:39 -08:00
|
|
|
name = "imlib2-1.4.6";
|
2013-12-10 14:20:23 -08:00
|
|
|
|
2007-03-05 05:44:27 -08:00
|
|
|
src = fetchurl {
|
2011-09-26 06:13:45 -07:00
|
|
|
url = "mirror://sourceforge/enlightenment/${name}.tar.bz2";
|
2014-03-03 02:08:39 -08:00
|
|
|
sha256 = "0x1j0ylpclkp8cfpwfpkjywqz124bqskyxbw8pvwzkv2gmrbwldg";
|
2007-03-05 05:44:27 -08:00
|
|
|
};
|
2013-12-10 14:20:23 -08:00
|
|
|
|
2011-09-26 06:13:45 -07:00
|
|
|
buildInputs = [ x11 libjpeg libtiff libungif libpng bzip2 ];
|
|
|
|
|
2012-12-28 10:20:09 -08:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2011-09-26 06:13:45 -07:00
|
|
|
|
2014-03-04 04:03:08 -08:00
|
|
|
preConfigure = ''
|
|
|
|
substituteInPlace imlib2-config.in \
|
|
|
|
--replace "@my_libs@" ""
|
|
|
|
'';
|
|
|
|
|
2011-09-26 06:13:45 -07:00
|
|
|
meta = {
|
2013-12-10 14:20:23 -08:00
|
|
|
hydraPlatforms = stdenv.lib.platforms.linux;
|
2011-09-26 06:13:45 -07:00
|
|
|
};
|
2007-03-05 05:44:27 -08:00
|
|
|
}
|