nixpkgs/pkgs/servers/sickbeard/sickrage.nix

35 lines
952 B
Nix
Raw Normal View History

2018-09-13 12:37:12 +00:00
{ stdenv, fetchFromGitHub, python2, makeWrapper }:
python2.pkgs.buildPythonApplication rec {
name = "sickrage-${version}";
version = "v2018.07.21-1";
src = fetchFromGitHub {
owner = "SickRage";
repo = "SickRage";
2019-09-08 23:38:31 +00:00
rev = version;
2018-09-13 12:37:12 +00:00
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 ];
2018-09-13 12:37:12 +00:00
};
}