2022-11-27T01:36:30 qpdf 11.1.1 -> 11.2.0 https://github.com/qpdf/qpdf/releases 2022-11-27T01:36:34 attrpath: qpdf 2022-11-27T01:36:34 Checking auto update branch... 2022-11-27T01:36:34 No auto update branch exists 2022-11-27T01:36:35 Old version 11.1.1" not present in master derivation file with contents: { lib, stdenv, fetchFromGitHub, libjpeg, zlib, cmake, perl }: stdenv.mkDerivation rec { pname = "qpdf"; version = "11.2.0"; src = fetchFromGitHub { owner = "qpdf"; repo = "qpdf"; rev = "v${version}"; hash = "sha256-AkLuclDm9qjVbpFqenlbgTWt/GAWzOj9d1lqgt6aPNo="; }; 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; meta = with lib; { homepage = "https://qpdf.sourceforge.io/"; 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; changelog = "https://github.com/qpdf/qpdf/blob/v${version}/ChangeLog"; }; }