2016-11-22 20:08:19 +00:00
|
|
|
{ stdenv, fetchurl, libjpeg, libtiff, giflib, libpng, bzip2, pkgconfig
|
|
|
|
, freetype
|
|
|
|
, x11Support ? true, xlibsWrapper ? null }:
|
|
|
|
|
|
|
|
with stdenv.lib;
|
2007-03-05 13:44:27 +00:00
|
|
|
|
2011-09-26 13:13:45 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2016-05-04 01:32:57 +00:00
|
|
|
name = "imlib2-1.4.9";
|
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";
|
2016-05-04 01:32:57 +00:00
|
|
|
sha256 = "08809xxk2555yj6glixzw9a0x3x8cx55imd89kj3r0h152bn8a3x";
|
2007-03-05 13:44:27 +00:00
|
|
|
};
|
2013-12-10 22:20:23 +00:00
|
|
|
|
2016-11-22 20:08:19 +00:00
|
|
|
buildInputs = [ libjpeg libtiff giflib libpng bzip2 freetype ]
|
|
|
|
++ optional x11Support xlibsWrapper;
|
2011-09-26 13:13:45 +00:00
|
|
|
|
2012-12-28 18:20:09 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2011-09-26 13:13:45 +00:00
|
|
|
|
2016-05-04 01:32:57 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2014-03-04 12:03:08 +00:00
|
|
|
preConfigure = ''
|
|
|
|
substituteInPlace imlib2-config.in \
|
|
|
|
--replace "@my_libs@" ""
|
|
|
|
'';
|
|
|
|
|
2015-04-07 22:39:05 +00:00
|
|
|
# Do not build amd64 assembly code on Darwin, because it fails to compile
|
|
|
|
# with unknow directive errors
|
2016-11-22 20:08:19 +00:00
|
|
|
configureFlags = optional stdenv.isDarwin "--enable-amd64=no"
|
|
|
|
++ optional (!x11Support) "--without-x";
|
2015-04-07 22:39:05 +00:00
|
|
|
|
2016-11-22 21:11:25 +00:00
|
|
|
outputs = [ "out" "bin" "dev" ];
|
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
moveToOutput bin/imlib2-config "$dev"
|
|
|
|
'';
|
|
|
|
|
2011-09-26 13:13:45 +00:00
|
|
|
meta = {
|
2015-04-07 22:39:05 +00: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.
|
|
|
|
'';
|
|
|
|
|
2016-11-22 20:08:19 +00:00
|
|
|
license = licenses.free;
|
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = with maintainers; [ spwhitt ];
|
2011-09-26 13:13:45 +00:00
|
|
|
};
|
2007-03-05 13:44:27 +00:00
|
|
|
}
|