nixpkgs/pkgs/applications/graphics/gocr/default.nix

22 lines
538 B
Nix
Raw Normal View History

2012-11-23 21:22:52 +00:00
{ stdenv, fetchurl, tk }:
stdenv.mkDerivation rec {
2014-01-13 15:50:12 +00:00
name = "gocr-0.50";
src = fetchurl {
2014-01-13 15:50:12 +00:00
url = "http://www-e.uni-magdeburg.de/jschulen/ocr/${name}.tar.gz";
sha256 = "1dgmcpapy7h68d53q2c5d0bpgzgfb2nw2blndnx9qhc7z12149mw";
};
2012-11-23 21:22:52 +00:00
postInstall = ''
sed -i -e 's|exec wish|exec ${tk}/bin/wish|' $out/bin/gocr.tcl
'';
meta = {
2012-11-23 21:18:36 +00:00
homepage = "http://jocr.sourceforge.net/";
description = "GPL Optical Character Recognition";
license = stdenv.lib.licenses.gpl2;
2012-11-23 21:18:36 +00:00
platforms = stdenv.lib.platforms.linux;
};
}