nixpkgs/pkgs/tools/cd-dvd/vobsub2srt/default.nix

27 lines
791 B
Nix
Raw Normal View History

2013-12-29 03:16:41 +00:00
{ stdenv, fetchgit, cmake, libtiff, pkgconfig, tesseract }:
2014-09-20 18:28:15 +00:00
let rev = "a6abbd61127a6392d420bbbebdf7612608c943c2";
2013-12-29 03:16:41 +00:00
shortRev = builtins.substring 0 7 rev;
in
stdenv.mkDerivation {
2014-09-20 18:28:15 +00:00
name = "vobsub2srt-git-20140817-${shortRev}";
2013-12-29 03:16:41 +00:00
src = fetchgit {
inherit rev;
url = https://github.com/ruediger/VobSub2SRT.git;
sha256 = "1rpanrv8bgdh95v2320qbd44xskncvq6y84cbbfc86gw0qxpd9cb";
2013-12-29 03:16:41 +00:00
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ cmake libtiff ];
2013-12-29 03:16:41 +00:00
propagatedBuildInputs = [ tesseract ];
meta = {
homepage = https://github.com/ruediger/VobSub2SRT;
description = "Converts VobSub subtitles into SRT subtitles";
2014-03-07 16:34:54 +00:00
license = stdenv.lib.licenses.gpl3Plus;
2013-12-29 03:16:41 +00:00
platforms = stdenv.lib.platforms.unix;
maintainers = [ stdenv.lib.maintainers.ttuegel ];
};
}