2010-01-07 23:47:30 +01:00
|
|
|
{stdenv, fetchurl, cmake, zlib, freetype, libjpeg, libtiff, fontconfig,
|
2010-09-15 20:37:38 +02:00
|
|
|
openssl, libpng, lua5}:
|
2010-01-07 23:47:30 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2013-03-18 12:20:43 +01:00
|
|
|
name = "podofo-0.9.2";
|
2010-01-07 23:47:30 +01:00
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/podofo/${name}.tar.gz";
|
2013-03-18 12:20:43 +01:00
|
|
|
sha256 = "1wx3s0718rmhdzdwyi8hgpf2s92sk3hijy8f4glrmnjpiihr2la6";
|
2010-01-07 23:47:30 +01:00
|
|
|
};
|
2010-09-16 10:40:47 +02:00
|
|
|
propagatedBuildInputs = [ zlib freetype libjpeg libtiff fontconfig openssl libpng ];
|
2012-12-28 19:20:09 +01:00
|
|
|
nativeBuildInputs = [ cmake ];
|
2012-10-27 14:50:00 +02:00
|
|
|
buildInputs = [ lua5 stdenv.gcc.libc ];
|
2013-04-10 16:49:18 +02:00
|
|
|
|
|
|
|
crossAttrs = {
|
|
|
|
propagatedBuildInputs = [ zlib.crossDrv freetype.crossDrv libjpeg.crossDrv
|
|
|
|
libtiff.crossDrv fontconfig.crossDrv openssl.crossDrv libpng.crossDrv
|
|
|
|
lua5.crossDrv stdenv.gccCross.libc ];
|
|
|
|
};
|
|
|
|
|
2010-01-07 23:47:30 +01:00
|
|
|
cmakeFlags = "-DPODOFO_BUILD_SHARED=ON -DPODOFO_BUILD_STATIC=OFF";
|
2010-09-15 20:37:38 +02:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://podofo.sourceforge.net;
|
|
|
|
description = "A library to work with the PDF file format";
|
|
|
|
platforms = stdenv.lib.platforms.all;
|
|
|
|
maintainers = [ stdenv.lib.maintainers.urkud ];
|
|
|
|
};
|
2010-01-07 23:47:30 +01:00
|
|
|
}
|