nixpkgs/pkgs/servers/sickbeard/sickgear.nix

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

44 lines
1.2 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, python3, makeWrapper, libarchive }:
2018-09-13 12:22:17 +00:00
let
pythonEnv = python3.withPackages(ps: with ps; [ cheetah3 lxml ]);
in stdenv.mkDerivation rec {
pname = "sickgear";
2023-01-10 23:23:32 +00:00
version = "0.25.60";
2018-09-13 12:22:17 +00:00
src = fetchFromGitHub {
owner = "SickGear";
repo = "SickGear";
rev = "release_${version}";
2023-01-10 23:23:32 +00:00
sha256 = "sha256-5I6hJgUN2BdHc80RrcmWWxdq0iz6rcO4aX16CDtwu/g=";
2018-09-13 12:22:17 +00:00
};
patches = [
./patches/override-python-version-check.patch
];
2018-09-13 12:22:17 +00:00
dontBuild = true;
doCheck = false;
nativeBuildInputs = [ makeWrapper ];
buildInputs = [ pythonEnv libarchive ];
2018-09-13 12:22:17 +00:00
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
};
}