5d27ed479a
svn path=/nixpkgs/trunk/; revision=27694
21 lines
724 B
Nix
21 lines
724 B
Nix
{stdenv, fetchurl, cmake, zlib, freetype, libjpeg, libtiff, fontconfig,
|
|
openssl, libpng, lua5}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "podofo-0.9.1";
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/podofo/${name}.tar.gz";
|
|
sha256 = "0icpxh1l1dpviq2zwy764dhg8y03zwyf4pgw4s7kb165nvh9v5kv";
|
|
};
|
|
propagatedBuildInputs = [ zlib freetype libjpeg libtiff fontconfig openssl libpng ];
|
|
buildInputs = [ cmake lua5 stdenv.gcc.libc ];
|
|
cmakeFlags = "-DPODOFO_BUILD_SHARED=ON -DPODOFO_BUILD_STATIC=OFF";
|
|
|
|
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 ];
|
|
};
|
|
}
|