1 { lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, intltool, file,
2 desktop-file-utils, enchant, gtk3, gtkmm3, gst_all_1, hicolor-icon-theme,
3 libsigcxx, libxmlxx, xdg-utils, isocodes, wrapGAppsHook3
6 stdenv.mkDerivation rec {
7 pname = "subtitleeditor";
8 version = "unstable-2019-11-30";
10 src = fetchFromGitHub {
12 repo = "subtitleeditor";
13 rev = "4c215f4cff4483c44361a2f1d45efc4c6670787f";
14 sha256 = "sha256-1Q1nd3GJ6iDGQv4SM2S1ehVW6kPdbqTn8KTtTb0obiQ=";
32 gst_all_1.gst-plugins-base
33 gst_all_1.gst-plugins-good
34 gst_all_1.gst-plugins-bad
35 gst_all_1.gst-plugins-ugly
44 enableParallelBuilding = true;
46 preConfigure = "substituteInPlace ./configure --replace /usr/bin/file ${file}/bin/file";
48 configureFlags = [ "--disable-debug" ];
51 description = "GTK 3 application to edit video subtitles";
53 Subtitle Editor is a GTK 3 tool to edit subtitles for GNU/Linux/*BSD. It
54 can be used for new subtitles or as a tool to transform, edit, correct
55 and refine existing subtitle. This program also shows sound waves, which
56 makes it easier to synchronise subtitles to voices.
58 homepage = "http://kitone.github.io/subtitleeditor/";
59 license = lib.licenses.gpl3Plus;
60 platforms = lib.platforms.linux;
61 maintainers = [ lib.maintainers.plcplc ];
62 mainProgram = "subtitleeditor";