Commit ea6ce7c9 authored by Robert Schütz's avatar Robert Schütz
Browse files

vobsub2srt: use tesseract3

parent 0bacc8e9
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
{ 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";