summary refs log tree commit diff
path: root/pkgs/applications/graphics/gocr/default.nix
blob: 919b9fcc4c3c4912234a3027cb4009b740e52005 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ 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;
    maintainers = [ stdenv.lib.maintainers.simons ];
  };
}