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

                         

                  

                  
                                                                                 
                                                                    



                               
                                 

                
                              


               
                                        


                 
                                

                           
                                            
                                                                                                             
                                                                         
                                                 


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

let version = "9.1.0";
in
stdenv.mkDerivation rec {
  pname = "qpdf";
  inherit version;

  src = fetchurl {
    url = "mirror://sourceforge/qpdf/qpdf/${version}/${pname}-${version}.tar.gz";
    sha256 = "0ygd80wxcmh613n04x2kmf8wlsl0drxyd5wwdcrm1rzj0xwvpfrs";
  };

  nativeBuildInputs = [ perl ];

  buildInputs = [ zlib libjpeg ];

  postPatch = ''
    patchShebangs qpdf/fix-qdf
  '';

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

  doCheck = true;
  enableParallelBuilding = 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";
    license = licenses.asl20; # as of 7.0.0, people may stay at artistic2
    maintainers = with maintainers; [ abbradar ];
    platforms = platforms.all;
  };
}