Merge pull request #68843 from marsam/update-diff-pdf

diff-pdf: 2017-12-30 -> 0.3
This commit is contained in:
Maximilian Bosch 2019-09-15 19:01:40 +02:00 committed by GitHub
commit 5abd97aa92
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -7,15 +7,15 @@ let
else else
[ wxGTK ]; [ wxGTK ];
in in
stdenv.mkDerivation { stdenv.mkDerivation rec {
pname = "diff-pdf"; pname = "diff-pdf";
version = "2017-12-30"; version = "0.3";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "vslavik"; owner = "vslavik";
repo = "diff-pdf"; repo = "diff-pdf";
rev = "c4d67226ec4c29b30a7399e75f80636ff8a6f9fc"; rev = "v${version}";
sha256 = "1c3ig7ckrg37p5vzvgjnsfdzdad328wwsx0r31lbs1d8pkjkgq3m"; sha256 = "0vzvyjpk6m89zs6j1dq85f93n2b1i6akn2g0z9qhagjd2pds920i";
}; };
nativeBuildInputs = [ autoconf automake pkgconfig ]; nativeBuildInputs = [ autoconf automake pkgconfig ];
@ -24,9 +24,10 @@ stdenv.mkDerivation {
preConfigure = "./bootstrap"; preConfigure = "./bootstrap";
meta = with stdenv.lib; { meta = with stdenv.lib; {
homepage = http://vslavik.github.io/diff-pdf; homepage = "https://vslavik.github.io/diff-pdf/";
description = "Simple tool for visually comparing two PDF files"; description = "Simple tool for visually comparing two PDF files";
license = licenses.gpl2; license = licenses.gpl2;
platforms = platforms.all;
maintainers = with maintainers; [ dtzWill ]; maintainers = with maintainers; [ dtzWill ];
}; };
} }