summary refs log blame commit diff
path: root/pkgs/development/libraries/qpdf/default.nix
blob: c8725264820398ee3d4f0d0731b36d659cd95b9a (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                                                      
 
                         
                 
                     
 



                                    
                                                                 



                               
                                 
 
               
                                        


                 
                                
 
                    
                                              
                                                                                                             
                                                                         
                                                 


                              
{ lib, stdenv, fetchFromGitHub, libjpeg, zlib, perl }:

stdenv.mkDerivation rec {
  pname = "qpdf";
  version = "10.6.2";

  src = fetchFromGitHub {
    owner = "qpdf";
    repo = "qpdf";
    rev = "release-qpdf-${version}";
    hash = "sha256-+8bH7fKJ5uZRxKX/4nMkoZGFTxm2uJEXkb1wq5FrLWs=";
  };

  nativeBuildInputs = [ perl ];

  buildInputs = [ zlib libjpeg ];

  preCheck = ''
    patchShebangs qtest/bin/qtest-driver
  '';

  doCheck = true;
  enableParallelBuilding = true;

  meta = with lib; {
    homepage = "http://qpdf.sourceforge.net/";
    description = "A C++ library and set of programs that inspect and manipulate the structure of PDF files";
    license = licenses.asl20; # as of 7.0.0, people may stay at artistic2
    maintainers = with maintainers; [ abbradar ];
    platforms = platforms.all;
  };
}