forked from mirrors/nixpkgs
podofo-0.8.2, metainfo
svn path=/nixpkgs/trunk/; revision=23811
This commit is contained in:
parent
48c13f4096
commit
f139236666
|
@ -1,12 +1,20 @@
|
|||
{stdenv, fetchurl, cmake, zlib, freetype, libjpeg, libtiff, fontconfig,
|
||||
openssl}:
|
||||
openssl, libpng, lua5}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "podofo-0.7.0";
|
||||
name = "podofo-0.8.2";
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/podofo/${name}.tar.gz";
|
||||
sha256 = "1hpd5ldjv013041rmcfrkbk8v6wdpxcg60i3aklik583q2rf0mqy";
|
||||
sha256 = "064cgrvjvy57n5i25d4j7yx5wd3wgkdks448bzc3a8nsmyl08skq";
|
||||
};
|
||||
buildInputs = [ cmake zlib freetype libjpeg libtiff fontconfig openssl ];
|
||||
buildInputs = [ cmake zlib freetype libjpeg libtiff fontconfig openssl libpng
|
||||
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 ];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue