{ stdenv, fetchurl, libjpeg, libtiff, giflib, libpng, bzip2, pkgconfig , freetype , x11Support ? true, xlibsWrapper ? null }: with stdenv.lib; stdenv.mkDerivation rec { name = "imlib2-1.4.9"; src = fetchurl { url = "mirror://sourceforge/enlightenment/${name}.tar.bz2"; sha256 = "08809xxk2555yj6glixzw9a0x3x8cx55imd89kj3r0h152bn8a3x"; }; buildInputs = [ libjpeg libtiff giflib libpng bzip2 freetype ] ++ optional x11Support xlibsWrapper; nativeBuildInputs = [ pkgconfig ]; enableParallelBuilding = true; preConfigure = '' substituteInPlace imlib2-config.in \ --replace "@my_libs@" "" ''; # Do not build amd64 assembly code on Darwin, because it fails to compile # with unknow directive errors configureFlags = optional stdenv.isDarwin "--enable-amd64=no" ++ optional (!x11Support) "--without-x"; meta = { 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 = licenses.free; platforms = platforms.unix; maintainers = with maintainers; [ spwhitt ]; }; }