summary refs log tree commit diff
path: root/pkgs/servers/sickbeard/sickrage.nix
blob: cbde11e3dc0ccd455b4931ac2d07c76cb6101dbe (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
33
34
{ stdenv, fetchFromGitHub, python2, makeWrapper }:

python2.pkgs.buildPythonApplication rec {
  name = "sickrage-${version}";
  version = "v2018.07.21-1";

  src = fetchFromGitHub {
    owner = "SickRage";
    repo = "SickRage";
    rev = version; 
    sha256 = "0lzklpsxqrb73inbv8almnhbnb681pmi44gzc8i4sjwmdksiiif9";
  };

  dontBuild = true;
  doCheck = false;

  nativeBuildInputs = [ makeWrapper ];
  buildInputs = [ python2 ];

  installPhase = ''
    mkdir -p $out/bin
    cp -R {gui,lib,locale,sickbeard,sickrage,SickBeard.py} $out/

    makeWrapper $out/SickBeard.py $out/bin/sickrage
  '';

  meta = with stdenv.lib; {
    description = "Automatic Video Library Manager for TV Shows";
    longDescription = "It watches for new episodes of your favorite shows, and when they are posted it does its magic.";
    license     = licenses.gpl3;
    homepage    = https://sickrage.github.io;
    maintainers = with maintainers; [ sterfield ];
  };
}