2015-07-08 00:22:57 +02:00
|
|
|
{ stdenv, pythonPackages, fetchurl, xpdf }:
|
|
|
|
let
|
|
|
|
py = pythonPackages;
|
|
|
|
in
|
2016-02-19 13:12:11 +01:00
|
|
|
py.buildPythonApplication rec {
|
2015-07-08 00:22:57 +02:00
|
|
|
name = "pdfdiff-${version}";
|
|
|
|
version = "0.92";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2018-06-28 20:43:35 +02:00
|
|
|
url = "https://www.cs.ox.ac.uk/people/cas.cremers/downloads/software/pdfdiff.py";
|
2015-07-08 00:22:57 +02:00
|
|
|
sha256 = "0zxwjjbklz87wkbhkmsvhc7xmv5php7m2a9vm6ydhmhlxsybf836";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ pythonPackages.wrapPython ];
|
|
|
|
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
phases = [ "unpackPhase" "patchPhase" "installPhase" ];
|
|
|
|
|
|
|
|
unpackPhase = "cp $src pdfdiff.py";
|
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
sed -i -r 's|pdftotextProgram = "pdftotext"|pdftotextProgram = "${xpdf}/bin/pdftotext"|' pdfdiff.py
|
|
|
|
sed -i -r 's|progName = "pdfdiff.py"|progName = "pdfdiff"|' pdfdiff.py
|
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/bin
|
|
|
|
cp pdfdiff.py $out/bin/pdfdiff
|
|
|
|
chmod +x $out/bin/pdfdiff
|
|
|
|
|
|
|
|
substituteInPlace $out/bin/pdfdiff --replace "#!/usr/bin/python" "#!${pythonPackages.python.interpreter}"
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "http://www.cs.ox.ac.uk/people/cas.cremers/misc/pdfdiff.html";
|
2015-07-08 00:22:57 +02:00
|
|
|
description = "Tool to view the difference between two PDF or PS files";
|
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|