summary refs log blame commit diff
path: root/pkgs/development/libraries/qpdf/default.nix
blob: 2f4815036709269b11eeb48e586a18305925d54f (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
















                                                                     


               











                                                                                                             
{ stdenv, fetchurl, pcre, zlib, perl }:

let version = "5.1.2";
in
stdenv.mkDerivation rec {
  name = "qpdf-${version}";

  src = fetchurl {
    url = "mirror://sourceforge/qpdf/qpdf/${version}/${name}.tar.gz";
    sha256 = "1zbvhrp0zjzbi6q2bnbxbg6399r47pq5gw3kspzph81j19fqvpg9";
  };

  nativeBuildInputs = [ perl ];

  buildInputs = [ pcre zlib ];

  postPatch = ''
  '';

  preCheck = ''
  '';

  doCheck = true;

  meta = with stdenv.lib; {
    homepage = http://qpdf.sourceforge.net/; 
    description = "A C++ library and set of programs that inspect and manipulate the structure of PDF files";
    licenses = licenses.artistic2;
    maintainers = maintainers.abbradar;
    platforms = platforms.all;
  };
}