nixpkgs/pkgs/servers/sickbeard/sickrage.nix

35 lines
933 B
Nix
Raw Permalink Normal View History

{ lib, fetchFromGitHub, python2, makeWrapper }:
2018-09-13 12:37:12 +00:00
python2.pkgs.buildPythonApplication rec {
2020-03-29 10:34:50 +00:00
pname = "sickrage";
2018-09-13 12:37:12 +00:00
version = "v2018.07.21-1";
src = fetchFromGitHub {
owner = "SickRage";
repo = "SickRage";
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 lib; {
2018-09-13 12:37:12 +00:00
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
};
}