nixpkgs/pkgs/servers/sickbeard/sickgear.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

40 lines
1.1 KiB
Nix
Raw Normal View History

2021-10-14 17:18:18 +00:00
{ lib, stdenv, fetchFromGitHub, python3, makeWrapper }:
2018-09-13 12:22:17 +00:00
let
2021-10-14 17:18:18 +00:00
pythonEnv = python3.withPackages(ps: with ps; [ cheetah3 ]);
in stdenv.mkDerivation rec {
pname = "sickgear";
2022-06-16 10:07:43 +00:00
version = "0.25.35";
2018-09-13 12:22:17 +00:00
src = fetchFromGitHub {
owner = "SickGear";
repo = "SickGear";
rev = "release_${version}";
2022-06-16 10:07:43 +00:00
sha256 = "0hc43wfa256nkjm7bvsr6b7xsyilm1ks4x16kvpprqmj1symlkz3";
2018-09-13 12:22:17 +00:00
};
dontBuild = true;
doCheck = false;
nativeBuildInputs = [ makeWrapper ];
buildInputs = [ pythonEnv ];
2021-10-14 17:18:18 +00:00
postPatch = ''
substituteInPlace sickgear.py --replace "/usr/bin/env python2" "/usr/bin/env python"
'';
2018-09-13 12:22:17 +00:00
installPhase = ''
2021-10-14 17:18:18 +00:00
mkdir -p $out/bin $out/opt/sickgear
cp -R {autoProcessTV,gui,lib,sickbeard,sickgear.py} $out/opt/sickgear/
2018-09-13 12:22:17 +00:00
2021-10-14 17:18:18 +00:00
makeWrapper $out/opt/sickgear/sickgear.py $out/bin/sickgear
2018-09-13 12:22:17 +00:00
'';
meta = with lib; {
2018-09-13 12:22:17 +00:00
description = "The most reliable stable TV fork of the great Sick-Beard to fully automate TV enjoyment with innovation";
license = licenses.gpl3;
2019-07-02 04:12:25 +00:00
homepage = "https://github.com/SickGear/SickGear";
2021-01-15 07:07:56 +00:00
maintainers = with lib.maintainers; [ rembo10 ];
2018-09-13 12:22:17 +00:00
};
}