2014-11-03 23:01:03 +00:00
|
|
|
{ stdenv, fetchurl, x11, libjpeg, libtiff, giflib, libpng, bzip2, pkgconfig }:
|
2007-03-05 13:44:27 +00:00
|
|
|
|
2011-09-26 14:13:45 +01: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 14:13:45 +01: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
|
|
|
|
2014-11-03 23:01:03 +00:00
|
|
|
buildInputs = [ x11 libjpeg libtiff giflib libpng bzip2 ];
|
2011-09-26 14:13:45 +01:00
|
|
|
|
2012-12-28 18:20:09 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2011-09-26 14:13:45 +01:00
|
|
|
|
2014-11-03 23:01:03 +00:00
|
|
|
# From
|
|
|
|
# https://github.com/PhantomX/slackbuilds/blob/master/imlib2/patches/imlib2-giflib51.patch
|
|
|
|
patches = [ ./giflib51.patch ];
|
|
|
|
|
2014-03-04 12:03:08 +00:00
|
|
|
preConfigure = ''
|
|
|
|
substituteInPlace imlib2-config.in \
|
|
|
|
--replace "@my_libs@" ""
|
|
|
|
'';
|
|
|
|
|
2015-04-07 23:39:05 +01:00
|
|
|
# Do not build amd64 assembly code on Darwin, because it fails to compile
|
|
|
|
# with unknow directive errors
|
|
|
|
configureFlags = if stdenv.isDarwin then [ "--enable-amd64=no" ] else null;
|
|
|
|
|
2011-09-26 14:13:45 +01:00
|
|
|
meta = {
|
2015-04-07 23:39:05 +01:00
|
|
|
description = "Image manipulation library";
|
|
|
|
|
|
|
|
longDescription = ''
|
|
|
|
This is the Imlib 2 library - a library that does image file loading and
|
|
|
|
saving as well as rendering, manipulation, arbitrary polygon support, etc.
|
|
|
|
It does ALL of these operations FAST. Imlib2 also tries to be highly
|
|
|
|
intelligent about doing them, so writing naive programs can be done
|
|
|
|
easily, without sacrificing speed.
|
|
|
|
'';
|
|
|
|
|
|
|
|
license = stdenv.lib.licenses.free;
|
|
|
|
platforms = stdenv.lib.platforms.unix;
|
|
|
|
maintainers = with stdenv.lib.maintainers; [ spwhitt ];
|
2011-09-26 14:13:45 +01:00
|
|
|
};
|
2007-03-05 13:44:27 +00:00
|
|
|
}
|