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