83627f9931
GitOrigin-RevId: 2893f56de08021cffd9b6b6dfc70fd9ccd51eb60
57 lines
1.2 KiB
Nix
57 lines
1.2 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, cmake
|
|
, libjpeg
|
|
, perl
|
|
, zlib
|
|
|
|
# for passthru.tests
|
|
, cups-filters
|
|
, pdfmixtool
|
|
, pdfslicer
|
|
, python3
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "qpdf";
|
|
version = "11.9.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "qpdf";
|
|
repo = "qpdf";
|
|
rev = "v${version}";
|
|
hash = "sha256-HD7+2TBDLBIt+VaPO5WgnDjNZOj8naltFmYdYzOIn+4=";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake perl ];
|
|
|
|
buildInputs = [ zlib libjpeg ];
|
|
|
|
preConfigure = ''
|
|
patchShebangs qtest/bin/qtest-driver
|
|
patchShebangs run-qtest
|
|
# qtest needs to know where the source code is
|
|
substituteInPlace CMakeLists.txt --replace "run-qtest" "run-qtest --top $src --code $src --bin $out"
|
|
'';
|
|
|
|
doCheck = true;
|
|
|
|
passthru.tests = {
|
|
inherit (python3.pkgs) pikepdf;
|
|
inherit
|
|
cups-filters
|
|
pdfmixtool
|
|
pdfslicer
|
|
;
|
|
};
|
|
|
|
meta = with lib; {
|
|
homepage = "https://qpdf.sourceforge.io/";
|
|
description = "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;
|
|
changelog = "https://github.com/qpdf/qpdf/blob/v${version}/ChangeLog";
|
|
};
|
|
}
|