adding haru pdf lib

svn path=/nixpkgs/trunk/; revision=17076
This commit is contained in:
Marc Weber 2009-09-13 08:54:44 +00:00
parent 8b8b058662
commit dee4d93757
2 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,21 @@
args: with args;
stdenv.mkDerivation {
name = "haru-2.1.0";
src = fetchurl {
url = http://libharu.org/files/libharu-2.1.0.tar.bz2;
sha256 = "07mbvw41jwrapc8jwhi385jpr5b3wx6kah41mkxkifvc06y2141r";
};
configureFlags = "--with-zlib=${zlib} --with-png=${libpng}";
buildInputs = [zlib libpng];
meta = {
description = "cross platform, open source library for generating PDF files";
homepage = http://libharu.org/wiki/Main_Page;
license = "ZLIB/LIBPNG"; # see README.
maintainers = [args.lib.maintainers.marcweber];
platforms = args.lib.platforms.linux;
};
}

View File

@ -3563,6 +3563,10 @@ let
inherit (gtkLibs) glib;
};
libharu = import ../development/libraries/libharu {
inherit fetchurl stdenv lib zlib libpng;
};
libical = import ../development/libraries/libical {
inherit stdenv fetchurl perl;
};