summary refs log tree commit diff
path: root/pkgs/tools/misc/subberthehut/default.nix
blob: e54dc3b3f2b66ce444492ae502a1999720823164 (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
{ stdenv, fetchFromGitHub, pkgconfig, xmlrpc_c, glib, zlib }:
stdenv.mkDerivation rec {
  pname = "subberthehut";
  version = "20";

  src = fetchFromGitHub {
    owner  = "mus65";
    repo   = "subberthehut";
    rev    = version;
    sha256 = "19prdqbk19h0wak318g2jn1mnfm7l7f83a633bh0rhskysmqrsj1";
  };

  nativeBuildInputs = [ pkgconfig ];
  buildInputs = [ xmlrpc_c glib zlib ];

  installPhase = ''
    install -Dm755 subberthehut $out/bin/subberthehut
    install -Dm644 bash_completion $out/share/bash-completion/completions/subberthehut
  '';

  meta = with stdenv.lib; {
    homepage = https://github.com/mus65/subberthehut;
    description = "An OpenSubtitles.org downloader";
    license = licenses.gpl2;
    platforms = platforms.linux;
    maintainers = with maintainers; [ jqueiroz ];
  };
}