about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/libharu/default.nix
blob: 68dba64618f522b1763210b16b4a8cb0c7373c0c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ stdenv, fetchzip, cmake, zlib, libpng }:

stdenv.mkDerivation {
  name = "libharu-2.3.0";

  src = fetchzip {
    url = "https://github.com/libharu/libharu/archive/RELEASE_2_3_0.tar.gz";
    sha256 = "15s9hswnl3qqi7yh29jyrg0hma2n99haxznvcywmsp8kjqlyg75q";
  };

  buildInputs = [ zlib libpng cmake ];

  meta = {
    description = "Cross platform, open source library for generating PDF files";
    homepage = "http://libharu.org/";
    license = stdenv.lib.licenses.zlib;
    maintainers = [ stdenv.lib.maintainers.marcweber ];
    platforms = stdenv.lib.platforms.unix;
  };
}