2015-02-25 08:46:01 +01:00
|
|
|
{ stdenv, fetchzip, cmake, zlib, libpng }:
|
2010-07-28 13:55:54 +02:00
|
|
|
|
2009-09-13 10:54:44 +02:00
|
|
|
stdenv.mkDerivation {
|
2015-02-25 08:46:01 +01:00
|
|
|
name = "libharu-2.3.0";
|
2009-09-13 10:54:44 +02:00
|
|
|
|
2015-02-25 08:46:01 +01:00
|
|
|
src = fetchzip {
|
|
|
|
url = https://github.com/libharu/libharu/archive/RELEASE_2_3_0.tar.gz;
|
|
|
|
sha256 = "15s9hswnl3qqi7yh29jyrg0hma2n99haxznvcywmsp8kjqlyg75q";
|
2009-09-13 10:54:44 +02:00
|
|
|
};
|
|
|
|
|
2015-02-25 08:46:01 +01:00
|
|
|
buildInputs = [ zlib libpng cmake ];
|
2012-01-27 16:05:35 +01:00
|
|
|
|
2011-07-02 16:16:06 +02:00
|
|
|
meta = {
|
|
|
|
description = "Cross platform, open source library for generating PDF files";
|
2015-02-25 08:46:01 +01:00
|
|
|
homepage = http://libharu.org/;
|
2014-11-06 01:44:33 +01:00
|
|
|
license = stdenv.lib.licenses.zlib;
|
2010-07-28 13:55:54 +02:00
|
|
|
maintainers = [ stdenv.lib.maintainers.marcweber ];
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2009-09-13 10:54:44 +02:00
|
|
|
};
|
|
|
|
}
|