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