2021-01-21 09:00:13 -08:00
|
|
|
{ lib, stdenv, fetchFromGitHub, libjpeg, zlib, perl }:
|
2014-11-04 18:28:33 -08:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-13 14:52:01 -07:00
|
|
|
pname = "qpdf";
|
2021-03-30 10:10:46 -07:00
|
|
|
version = "10.3.1";
|
2014-11-04 18:28:33 -08:00
|
|
|
|
2020-09-11 02:57:51 -07:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "qpdf";
|
|
|
|
repo = "qpdf";
|
|
|
|
rev = "release-qpdf-${version}";
|
2021-03-30 10:10:46 -07:00
|
|
|
sha256 = "sha256-iZUJjr9e+d90XA8YEFFwyRR0HjgPgBi6V5gIpVQMcV8=";
|
2014-11-04 18:28:33 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ perl ];
|
|
|
|
|
2017-11-11 01:24:48 -08:00
|
|
|
buildInputs = [ zlib libjpeg ];
|
2014-11-04 18:28:33 -08:00
|
|
|
|
|
|
|
preCheck = ''
|
2015-01-08 01:26:49 -08:00
|
|
|
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
|
|
|
|
2021-01-21 09:00:13 -08:00
|
|
|
meta = with lib; {
|
2020-03-31 18:11:51 -07:00
|
|
|
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";
|
2017-11-11 01:24:48 -08:00
|
|
|
license = licenses.asl20; # as of 7.0.0, people may stay at artistic2
|
2015-05-14 10:09:10 -07:00
|
|
|
maintainers = with maintainers; [ abbradar ];
|
2014-11-04 18:28:33 -08:00
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|