nixpkgs/pkgs/applications/misc/diff-pdf/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

46 lines
800 B
Nix
Raw Normal View History

2022-10-08 16:16:48 +02:00
{
lib,
stdenv,
fetchFromGitHub,
autoconf,
automake,
pkg-config,
cairo,
poppler,
wxGTK,
}:
2018-02-06 11:57:55 -06:00
2019-09-15 04:20:00 -05:00
stdenv.mkDerivation rec {
pname = "diff-pdf";
2024-01-27 13:03:10 +00:00
version = "0.5.2";
2018-02-06 11:57:55 -06:00
src = fetchFromGitHub {
owner = "vslavik";
repo = "diff-pdf";
rev = "v${version}";
2024-01-27 13:03:10 +00:00
sha256 = "sha256-6aKF3Xqp/1BoHEiZVZJSemTjn5Qwwr3QyhsXOIjTr08=";
2018-02-06 11:57:55 -06:00
};
nativeBuildInputs = [
autoconf
automake
pkg-config
];
2022-10-08 16:16:48 +02:00
buildInputs = [
cairo
poppler
wxGTK
];
2018-02-06 11:57:55 -06:00
preConfigure = "./bootstrap";
meta = with lib; {
2019-09-15 04:20:00 -05:00
homepage = "https://vslavik.github.io/diff-pdf/";
2018-02-06 11:57:55 -06:00
description = "Simple tool for visually comparing two PDF files";
license = licenses.gpl2;
2019-09-15 04:20:00 -05:00
platforms = platforms.all;
2018-02-06 11:57:55 -06:00
maintainers = with maintainers; [ dtzWill ];
2024-02-11 03:19:15 +01:00
mainProgram = "diff-pdf";
2018-02-06 11:57:55 -06:00
};
}