Add vobsub2srt-git-20140226-b70b6f5

This commit is contained in:
Thomas Tuegel 2013-12-28 21:16:41 -06:00 committed by Domen Kozar
parent ce2ac1f8a9
commit 9906b7da34
2 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,25 @@
{ stdenv, fetchgit, cmake, libtiff, pkgconfig, tesseract }:
let rev = "b70b6f584e8151f70f9d90df054af0911ea7475e";
shortRev = builtins.substring 0 7 rev;
in
stdenv.mkDerivation {
name = "vobsub2srt-git-20140226-${shortRev}";
src = fetchgit {
inherit rev;
url = https://github.com/ruediger/VobSub2SRT.git;
sha256 = "15437eba07e674cec66bc54cfa42ffe8b05816975401c9950bf9016e3881cd6a";
};
buildInputs = [ cmake libtiff pkgconfig ];
propagatedBuildInputs = [ tesseract ];
meta = {
homepage = https://github.com/ruediger/VobSub2SRT;
description = "Converts VobSub subtitles into SRT subtitles";
license = stdenv.lib.libraries.gpl3Plus;
platforms = stdenv.lib.platforms.unix;
maintainers = [ stdenv.lib.maintainers.ttuegel ];
};
}

View File

@ -2069,6 +2069,8 @@ let
vobcopy = callPackage ../tools/cd-dvd/vobcopy { };
vobsub2srt = callPackage ../tools/cd-dvd/vobsub2srt { };
vorbisgain = callPackage ../tools/misc/vorbisgain { };
vpnc = callPackage ../tools/networking/vpnc { };