mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 00:08:32 +01:00
ccextractor: enable ocr and hardsub support (#131849)
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
parent
704d38dcd5
commit
cf7212d79d
1 changed files with 32 additions and 7 deletions
|
@ -1,7 +1,17 @@
|
|||
{ lib, stdenv, fetchFromGitHub, pkg-config, cmake
|
||||
, glew, glfw3, leptonica, libiconv, tesseract3, zlib }:
|
||||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitHub
|
||||
, pkg-config
|
||||
, cmake
|
||||
, libiconv
|
||||
, zlib
|
||||
, enableOcr ? true
|
||||
, makeWrapper
|
||||
, tesseract4
|
||||
, leptonica
|
||||
, ffmpeg
|
||||
}:
|
||||
|
||||
with lib;
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "ccextractor";
|
||||
version = "0.91";
|
||||
|
@ -15,11 +25,20 @@ stdenv.mkDerivation rec {
|
|||
|
||||
sourceRoot = "source/src";
|
||||
|
||||
nativeBuildInputs = [ pkg-config cmake ];
|
||||
nativeBuildInputs = [ pkg-config cmake makeWrapper ];
|
||||
|
||||
buildInputs = [ glew glfw3 leptonica tesseract3 zlib ] ++ lib.optional (!stdenv.isLinux) libiconv;
|
||||
buildInputs = [ zlib ]
|
||||
++ lib.optional (!stdenv.isLinux) libiconv
|
||||
++ lib.optionals enableOcr [ leptonica tesseract4 ffmpeg ];
|
||||
|
||||
meta = {
|
||||
cmakeFlags = lib.optionals enableOcr [ "-DWITH_OCR=on" "-DWITH_HARDSUBX=on" ];
|
||||
|
||||
postInstall = lib.optionalString enableOcr ''
|
||||
wrapProgram "$out/bin/ccextractor" \
|
||||
--set TESSDATA_PREFIX "${tesseract4}/share/"
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://www.ccextractor.org";
|
||||
description = "Tool that produces subtitles from closed caption data in videos";
|
||||
longDescription = ''
|
||||
|
@ -28,7 +47,13 @@ stdenv.mkDerivation rec {
|
|||
It works on Linux, Windows, and OSX.
|
||||
'';
|
||||
platforms = platforms.unix;
|
||||
license = licenses.gpl2;
|
||||
# undefined reference to `png_do_expand_palette_rgba8_neon'
|
||||
# undefined reference to `png_riffle_palette_neon'
|
||||
# undefined reference to `png_do_expand_palette_rgb8_neon'
|
||||
# undefined reference to `png_init_filter_functions_neon'
|
||||
# during Linking C executable ccextractor
|
||||
broken = stdenv.isAarch64;
|
||||
license = licenses.gpl2Only;
|
||||
maintainers = with maintainers; [ titanous ];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue