Add vobsub2srt-git-20140226-b70b6f5
This commit is contained in:
parent
ce2ac1f8a9
commit
9906b7da34
25
pkgs/tools/cd-dvd/vobsub2srt/default.nix
Normal file
25
pkgs/tools/cd-dvd/vobsub2srt/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -2069,6 +2069,8 @@ let
|
|||||||
|
|
||||||
vobcopy = callPackage ../tools/cd-dvd/vobcopy { };
|
vobcopy = callPackage ../tools/cd-dvd/vobcopy { };
|
||||||
|
|
||||||
|
vobsub2srt = callPackage ../tools/cd-dvd/vobsub2srt { };
|
||||||
|
|
||||||
vorbisgain = callPackage ../tools/misc/vorbisgain { };
|
vorbisgain = callPackage ../tools/misc/vorbisgain { };
|
||||||
|
|
||||||
vpnc = callPackage ../tools/networking/vpnc { };
|
vpnc = callPackage ../tools/networking/vpnc { };
|
||||||
|
Loading…
Reference in New Issue
Block a user