2016-03-18 12:14:46 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig, autoconf, automake114x, intltool,
|
|
|
|
desktop_file_utils, enchant, gnome3, gst_all_1, hicolor_icon_theme,
|
|
|
|
libsigcxx, libxmlxx, xdg_utils, isocodes, wrapGAppsHook } :
|
2014-05-21 19:45:58 +01:00
|
|
|
|
|
|
|
let
|
2016-03-18 12:14:46 +00:00
|
|
|
ver_maj = "0.52";
|
|
|
|
ver_min = "1";
|
2014-05-21 19:45:58 +01:00
|
|
|
in
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "subtitle-editor-${ver_maj}.${ver_min}";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://download.gna.org/subtitleeditor/${ver_maj}/subtitleeditor-${ver_maj}.${ver_min}.tar.gz";
|
2016-03-18 12:14:46 +00:00
|
|
|
sha256 = "1m8j2i27kjaycvp09b0knp9in61jd2dj852hrx5hvkrby70mygjv";
|
2014-05-21 19:45:58 +01:00
|
|
|
};
|
|
|
|
|
2016-03-18 12:14:46 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
autoconf automake114x pkgconfig intltool wrapGAppsHook
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
desktop_file_utils
|
|
|
|
enchant
|
|
|
|
gnome3.gtk
|
|
|
|
gnome3.gtkmm
|
|
|
|
gst_all_1.gstreamer
|
|
|
|
gst_all_1.gstreamermm
|
|
|
|
gst_all_1.gst-plugins-base
|
|
|
|
gst_all_1.gst-plugins-good
|
|
|
|
hicolor_icon_theme
|
|
|
|
libsigcxx
|
|
|
|
libxmlxx
|
|
|
|
xdg_utils
|
|
|
|
isocodes
|
|
|
|
];
|
|
|
|
|
|
|
|
NIX_CFLAGS_COMPILE = "-std=c++11 -DDEBUG";
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2014-05-21 19:45:58 +01:00
|
|
|
doCheck = true;
|
|
|
|
|
2016-03-18 12:14:46 +00:00
|
|
|
patches = [ ./subtitleeditor-0.52.1-build-fix.patch ];
|
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
# ansi overrides -std, see src_configure
|
|
|
|
sed 's/\(CXXFLAGS\) -ansi/\1/' -i configure.ac configure
|
2014-05-21 19:45:58 +01:00
|
|
|
'';
|
|
|
|
|
2016-03-18 12:14:46 +00:00
|
|
|
configureFlags = [ "--disable-debug" ];
|
2014-05-21 19:45:58 +01:00
|
|
|
|
|
|
|
meta = {
|
2016-03-18 12:14:46 +00:00
|
|
|
description = "GTK+3 application to edit video subtitles";
|
2014-05-21 19:45:58 +01:00
|
|
|
longDescription = ''
|
2016-03-18 12:14:46 +00:00
|
|
|
Subtitle Editor is a GTK+3 tool to edit subtitles for GNU/Linux/*BSD. It
|
|
|
|
can be used for new subtitles or as a tool to transform, edit, correct
|
|
|
|
and refine existing subtitle. This program also shows sound waves, which
|
|
|
|
makes it easier to synchronise subtitles to voices.
|
2014-05-21 19:45:58 +01:00
|
|
|
'';
|
|
|
|
homepage = http://home.gna.org/subtitleeditor;
|
2016-03-18 12:14:46 +00:00
|
|
|
license = stdenv.lib.licenses.gpl3Plus;
|
2014-09-13 12:51:39 +01:00
|
|
|
maintainers = [ stdenv.lib.maintainers.plcplc ];
|
2014-05-21 19:45:58 +01:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
|
|
|
};
|
|
|
|
}
|