vobsub2srt: use tesseract3

This commit is contained in:
Robert Schütz 2023-03-02 21:12:47 -08:00
parent 0bacc8e993
commit ea6ce7c983

@ -1,4 +1,4 @@
{ lib, stdenv, fetchFromGitHub, cmake, libtiff, pkg-config, tesseract }:
{ lib, stdenv, fetchFromGitHub, cmake, libtiff, pkg-config, tesseract3 }:
stdenv.mkDerivation rec {
pname = "vobsub2srt";
@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ cmake pkg-config ];
buildInputs = [ libtiff ];
propagatedBuildInputs = [ tesseract ];
propagatedBuildInputs = [ tesseract3 ];
meta = {
homepage = "https://github.com/ruediger/VobSub2SRT";