Fix pdf2djvu build via an update

This commit is contained in:
Michael Raskin 2013-03-21 11:44:01 +04:00
parent 35f66fd74b
commit a9ec58c8b3
2 changed files with 13 additions and 2 deletions

View File

@ -1,12 +1,12 @@
{stdenv, fetchurl, pkgconfig, djvulibre, poppler, fontconfig, libjpeg }:
stdenv.mkDerivation rec {
version = "0.7.11";
version = "0.7.16";
name = "pdf2djvu-${version}";
src = fetchurl {
url = "http://pdf2djvu.googlecode.com/files/pdf2djvu_${version}.tar.gz";
sha256 = "00gscd7l02jyr132vlj08ks0pgmh5ja785n3fdxa795cib45rbgq";
sha256 = "1yg4ppqxpfda89yi4c3rrq2zhar5dzyqypvqdvdd0r7is2321nnv";
};
buildInputs = [ pkgconfig djvulibre poppler fontconfig libjpeg ];
@ -15,5 +15,6 @@ stdenv.mkDerivation rec {
description = "Creates djvu files from PDF files";
homepage = http://code.google.com/p/pdf2djvu/;
license = stdenv.lib.licenses.gpl2;
inherit version;
};
}

View File

@ -0,0 +1,10 @@
url http://code.google.com/p/pdf2djvu/downloads/list
version_link '[.]tar[.][a-z0-9]+$'
process 'code[.]google[.]com//' ''
version '.*_([0-9.]+[0-9]).*' '\1'
do_overwrite () {
ensure_hash
set_var_value version "$CURRENT_VERSION"
set_var_value sha256 "$CURRENT_HASH"
}