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

34 lines
887 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, autoconf, automake, pkg-config, cairo, poppler, wxGTK ? null, wxmac ? null, darwin ? null }:
2018-02-06 20:57:55 +03:00
2018-02-06 21:57:52 +03:00
let
wxInputs =
if stdenv.isDarwin then
[ wxmac darwin.apple_sdk.frameworks.Cocoa ]
else
[ wxGTK ];
in
2019-09-15 12:20:00 +03:00
stdenv.mkDerivation rec {
pname = "diff-pdf";
2021-02-14 03:24:55 +03:00
version = "0.5";
2018-02-06 20:57:55 +03:00
src = fetchFromGitHub {
owner = "vslavik";
repo = "diff-pdf";
2019-09-15 12:20:00 +03:00
rev = "v${version}";
2021-02-14 03:24:55 +03:00
sha256 = "sha256-Si8v5ZY1Q/AwQTaxa1bYG8bgqxWj++c4Hh1LzXSmSwE=";
2018-02-06 20:57:55 +03:00
};
nativeBuildInputs = [ autoconf automake pkg-config ];
2018-02-06 21:57:52 +03:00
buildInputs = [ cairo poppler ] ++ wxInputs;
2018-02-06 20:57:55 +03:00
preConfigure = "./bootstrap";
meta = with lib; {
2019-09-15 12:20:00 +03:00
homepage = "https://vslavik.github.io/diff-pdf/";
2018-02-06 20:57:55 +03:00
description = "Simple tool for visually comparing two PDF files";
license = licenses.gpl2;
2019-09-15 12:20:00 +03:00
platforms = platforms.all;
2018-02-06 20:57:55 +03:00
maintainers = with maintainers; [ dtzWill ];
};
}