mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-13 21:32:23 +03:00
36 lines
962 B
Nix
36 lines
962 B
Nix
{ lib, stdenv, fetchFromGitHub, python2, makeWrapper }:
|
|
|
|
let
|
|
pythonEnv = python2.withPackages(ps: with ps; [ cheetah ]);
|
|
in stdenv.mkDerivation rec {
|
|
pname = "sickgear";
|
|
version = "0.23.16";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "SickGear";
|
|
repo = "SickGear";
|
|
rev = "release_${version}";
|
|
sha256 = "sha256-Kx3vTbwYfILxn7n4upyVZo0V6S2lTStlezku9bfwGVw=";
|
|
};
|
|
|
|
dontBuild = true;
|
|
doCheck = false;
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
buildInputs = [ pythonEnv ];
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
cp -R {autoProcessTV,gui,lib,sickbeard,sickgear.py,SickBeard.py} $out/
|
|
|
|
makeWrapper $out/SickBeard.py $out/bin/sickgear
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "The most reliable stable TV fork of the great Sick-Beard to fully automate TV enjoyment with innovation";
|
|
license = licenses.gpl3;
|
|
homepage = "https://github.com/SickGear/SickGear";
|
|
maintainers = with lib.maintainers; [ rembo10 ];
|
|
};
|
|
}
|