ocrad: update from 0.24 to 0.25

This commit is contained in:
Pascal Wittmann 2015-05-19 19:39:09 +02:00
parent 0cb3c2d684
commit 10e001ab5b

View File

@ -1,11 +1,11 @@
{ fetchurl, stdenv, lzip, texinfo }: { fetchurl, stdenv, lzip, texinfo }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "ocrad-0.24"; name = "ocrad-0.25";
src = fetchurl { src = fetchurl {
url = "mirror://gnu/ocrad/${name}.tar.lz"; url = "mirror://gnu/ocrad/${name}.tar.lz";
sha256 = "0hhlx072d00bi9qia0nj5izsq4qkscpfz2mpbyfc72msl3hfvslv"; sha256 = "1m2dblgvvjs48rsglfdwq0ib9zk8h9n34xsh67ibrg0g0ffbw477";
}; };
buildInputs = [ lzip texinfo ]; buildInputs = [ lzip texinfo ];
@ -14,7 +14,6 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "Optical character recognition (OCR) program & library"; description = "Optical character recognition (OCR) program & library";
longDescription = longDescription =
'' GNU Ocrad is an OCR (Optical Character Recognition) program based on '' GNU Ocrad is an OCR (Optical Character Recognition) program based on
a feature extraction method. It reads images in pbm (bitmap), pgm a feature extraction method. It reads images in pbm (bitmap), pgm
@ -29,7 +28,6 @@ stdenv.mkDerivation rec {
''; '';
license = licenses.gpl3Plus; license = licenses.gpl3Plus;
maintainers = with maintainers; [ pSub ]; maintainers = with maintainers; [ pSub ];
platforms = platforms.gnu; # arbitrary choice platforms = platforms.gnu; # arbitrary choice
}; };