nixpkgs/pkgs/development/libraries/qpdf/default.nix

37 lines
894 B
Nix
Raw Normal View History

{ stdenv, fetchurl, libjpeg, zlib, perl }:
2014-11-04 18:28:33 -08:00
2019-11-29 02:40:59 -08:00
let version = "9.1.0";
2014-11-04 18:28:33 -08:00
in
stdenv.mkDerivation rec {
2019-08-13 14:52:01 -07:00
pname = "qpdf";
inherit version;
2014-11-04 18:28:33 -08:00
src = fetchurl {
2019-08-13 14:52:01 -07:00
url = "mirror://sourceforge/qpdf/qpdf/${version}/${pname}-${version}.tar.gz";
2019-11-29 02:40:59 -08:00
sha256 = "0ygd80wxcmh613n04x2kmf8wlsl0drxyd5wwdcrm1rzj0xwvpfrs";
2014-11-04 18:28:33 -08:00
};
nativeBuildInputs = [ perl ];
buildInputs = [ zlib libjpeg ];
2014-11-04 18:28:33 -08:00
postPatch = ''
patchShebangs qpdf/fix-qdf
2014-11-04 18:28:33 -08:00
'';
preCheck = ''
patchShebangs qtest/bin/qtest-driver
2014-11-04 18:28:33 -08:00
'';
doCheck = true;
2016-01-13 08:07:42 -08:00
enableParallelBuilding = true;
2014-11-04 18:28:33 -08:00
meta = with stdenv.lib; {
homepage = http://qpdf.sourceforge.net/;
2014-11-04 18:28:33 -08:00
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 ];
2014-11-04 18:28:33 -08:00
platforms = platforms.all;
};
}