nixpkgs/pkgs/servers/sickbeard/sickgear.nix

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

42 lines
1.1 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";
2024-06-20 16:09:56 +00:00
version = "3.31.1";
2018-09-13 12:22:17 +00:00
src = fetchFromGitHub {
owner = "SickGear";
repo = "SickGear";
rev = "release_${version}";
2024-06-20 16:09:56 +00:00
hash = "sha256-qcivNJ3CrvToT8CBq5Z/xssP/srTerXJfRGXcvNh2Ag=";
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
installPhase = ''
2021-10-14 17:18:18 +00:00
mkdir -p $out/bin $out/opt/sickgear
2023-06-06 06:51:22 +00:00
cp -R {autoProcessTV,gui,lib,sickgear,sickgear.py} $out/opt/sickgear/
2018-09-13 12:22:17 +00:00
2023-06-06 06:51:22 +00:00
makeWrapper $out/opt/sickgear/sickgear.py $out/bin/sickgear \
--suffix PATH : ${lib.makeBinPath [ libarchive ]}
2018-09-13 12:22:17 +00:00
'';
meta = with lib; {
description = "Most reliable stable TV fork of the great Sick-Beard to fully automate TV enjoyment with innovation";
mainProgram = "sickgear";
2018-09-13 12:22:17 +00:00
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
};
}