python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / cd-dvd / vobsub2srt / default.nix
blob2d764d2f7da0d1a3b25eeb5cede316658493d35c
1 { lib, stdenv, fetchFromGitHub, cmake, libtiff, pkg-config, tesseract }:
3 stdenv.mkDerivation rec {
4   pname = "vobsub2srt";
5   version = "unstable-2014-08-17";
7   src = fetchFromGitHub {
8     owner = "ruediger";
9     repo = "VobSub2SRT";
10     rev = "a6abbd61127a6392d420bbbebdf7612608c943c2";
11     sha256 = "sha256-i6V2Owb8GcTcWowgb/BmdupOSFsYiCF2SbC9hXa26uY=";
12   };
14   nativeBuildInputs = [ cmake pkg-config ];
15   buildInputs = [ libtiff ];
16   propagatedBuildInputs = [ tesseract ];
18   meta = {
19     homepage = "https://github.com/ruediger/VobSub2SRT";
20     description = "Converts VobSub subtitles into SRT subtitles";
21     license = lib.licenses.gpl3Plus;
22     platforms = lib.platforms.unix;
23     maintainers = [ lib.maintainers.ttuegel ];
24   };