nixpkgs/pkgs/applications/video/subtitleeditor/default.nix

64 lines
1.6 KiB
Nix
Raw Normal View History

2018-01-13 00:14:12 +00:00
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, intltool, file,
desktop-file-utils, enchant, gnome3, gst_all_1, hicolor-icon-theme,
2018-01-13 00:14:12 +00:00
libsigcxx, libxmlxx, xdg_utils, isocodes, wrapGAppsHook
2016-09-20 13:18:16 +00:00
}:
let
2018-01-13 00:14:12 +00:00
version = "0.54.0";
in
stdenv.mkDerivation rec {
2018-01-13 00:14:12 +00:00
name = "subtitleeditor-${version}";
2018-01-13 00:14:12 +00:00
src = fetchFromGitHub {
owner = "kitone";
repo = "subtitleeditor";
rev = version;
sha256 = "0vxcscc9m6gymgj173ahk2g9hlk9588z5fdaavmkpyriqdlhwm11";
};
2016-03-18 12:14:46 +00:00
nativeBuildInputs = [
2018-01-13 00:14:12 +00:00
autoreconfHook
2016-09-20 13:18:16 +00:00
pkgconfig
intltool
file
wrapGAppsHook
2016-03-18 12:14:46 +00:00
];
buildInputs = [
desktop-file-utils
2016-03-18 12:14:46 +00:00
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
2016-03-18 12:14:46 +00:00
libsigcxx
libxmlxx
xdg_utils
isocodes
];
enableParallelBuilding = true;
2016-09-20 13:18:16 +00:00
preConfigure = "substituteInPlace ./configure --replace /usr/bin/file ${file}/bin/file";
2016-03-18 12:14:46 +00:00
configureFlags = [ "--disable-debug" ];
meta = {
2016-03-18 12:14:46 +00:00
description = "GTK+3 application to edit video subtitles";
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.
'';
2018-01-13 00:14:12 +00:00
homepage = http://kitone.github.io/subtitleeditor/;
2016-03-18 12:14:46 +00:00
license = stdenv.lib.licenses.gpl3Plus;
platforms = stdenv.lib.platforms.linux;
2018-01-13 00:14:12 +00:00
maintainers = [ stdenv.lib.maintainers.plcplc ];
};
}