summary refs log tree commit diff
path: root/pkgs/tools/cd-dvd/srt-to-vtt-cl/default.nix
blob: 70fcedde858af3a2d06430fb7c9a3c23ac6d2003 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{ lib, stdenv, fetchFromGitHub, substituteAll }:

stdenv.mkDerivation rec {
  pname = "srt-to-vtt-cl";
  version = "unstable-2019-01-03";

  src = fetchFromGitHub {
    owner = "nwoltman";
    repo = pname;
    rev = "ce3d0776906eb847c129d99a85077b5082f74724";
    sha256 = "0qxysj08gjr6npyvg148llmwmjl2n9cyqjllfnf3gxb841dy370n";
  };

  patches = [
    (substituteAll {
      src = ./fix-validation.patch;
    })
  ];

  installPhase = ''
    mkdir -p $out/bin
    cp bin/$(uname -s)/$(uname -m)/srt-vtt $out/bin
  '';

  meta = with lib; {
    description = "Convert SRT files to VTT";
    license = licenses.mit;
    maintainers = with maintainers; [ ericdallo ];
    homepage = "https://github.com/nwoltman/srt-to-vtt-cl";
    platforms = platforms.linux;
  };
}