2010-01-07 22:47:30 +00:00
|
|
|
{stdenv, fetchurl, cmake, zlib, freetype, libjpeg, libtiff, fontconfig,
|
2010-09-15 19:37:38 +01:00
|
|
|
openssl, libpng, lua5}:
|
2010-01-07 22:47:30 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2013-03-18 11:20:43 +00:00
|
|
|
name = "podofo-0.9.2";
|
2010-01-07 22:47:30 +00:00
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/podofo/${name}.tar.gz";
|
2013-03-18 11:20:43 +00:00
|
|
|
sha256 = "1wx3s0718rmhdzdwyi8hgpf2s92sk3hijy8f4glrmnjpiihr2la6";
|
2010-01-07 22:47:30 +00:00
|
|
|
};
|
2010-09-16 09:40:47 +01:00
|
|
|
propagatedBuildInputs = [ zlib freetype libjpeg libtiff fontconfig openssl libpng ];
|
2012-12-28 18:20:09 +00:00
|
|
|
nativeBuildInputs = [ cmake ];
|
2012-10-27 13:50:00 +01:00
|
|
|
buildInputs = [ lua5 stdenv.gcc.libc ];
|
2010-01-07 22:47:30 +00:00
|
|
|
cmakeFlags = "-DPODOFO_BUILD_SHARED=ON -DPODOFO_BUILD_STATIC=OFF";
|
2010-09-15 19:37:38 +01: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 22:47:30 +00:00
|
|
|
}
|