summary refs log tree commit diff
path: root/pkgs/applications/graphics/gocr/default.nix
blob: 4b45e44e22d59b1e4d6efd029e7113d5920af102 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ stdenv, fetchurl, tk }:

stdenv.mkDerivation rec {
  name = "gocr-0.50";

  src = fetchurl {
    url = "http://www-e.uni-magdeburg.de/jschulen/ocr/${name}.tar.gz";
    sha256 = "1dgmcpapy7h68d53q2c5d0bpgzgfb2nw2blndnx9qhc7z12149mw";
  };

  postInstall = ''
    sed -i -e 's|exec wish|exec ${tk}/bin/wish|' $out/bin/gocr.tcl
  '';

  meta = {
    homepage = http://jocr.sourceforge.net/;
    description = "GPL Optical Character Recognition";
    license = stdenv.lib.licenses.gpl2;
    platforms = stdenv.lib.platforms.linux;
  };
}