mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-20 21:17:46 +00:00
40 lines
1.2 KiB
Nix
40 lines
1.2 KiB
Nix
{ stdenv, fetchurl, cmake, zlib, freetype, libjpeg, libtiff, fontconfig
|
|
, gcc5, openssl, libpng, lua5 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "podofo-0.9.4";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/podofo/${name}.tar.gz";
|
|
sha256 = "0ngqgwl38afmzcj2zpf18a2g63vhm2fp45cbf9z62129rdgm1pyc";
|
|
};
|
|
|
|
propagatedBuildInputs = [ zlib freetype libjpeg libtiff fontconfig openssl libpng ];
|
|
nativeBuildInputs = [ cmake gcc5 ];
|
|
buildInputs = [ lua5 stdenv.cc.libc ];
|
|
|
|
crossAttrs = {
|
|
propagatedBuildInputs = [ zlib.crossDrv freetype.crossDrv libjpeg.crossDrv
|
|
libtiff.crossDrv fontconfig.crossDrv openssl.crossDrv libpng.crossDrv
|
|
lua5.crossDrv stdenv.ccCross.libc ];
|
|
};
|
|
|
|
# fix finding freetype-2.5
|
|
preConfigure = ''
|
|
substituteInPlace ./CMakeLists.txt \
|
|
--replace FREETYPE_INCLUDE_DIR FREETYPE_INCLUDE_DIRS \
|
|
--replace 'FIND_PACKAGE(FREETYPE' 'FIND_PACKAGE(Freetype'
|
|
|
|
rm ./cmake/modules/Find{FREETYPE,ZLIB,PkgConfig}.cmake
|
|
'';
|
|
|
|
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 ];
|
|
};
|
|
}
|