nixpkgs/pkgs/servers/sabnzbd/default.nix

57 lines
1.1 KiB
Nix
Raw Permalink Normal View History

{ lib, stdenv
2020-08-22 02:20:28 +00:00
, fetchFromGitHub
, python3
, par2cmdline
, unzip
, unrar
, p7zip
, makeWrapper
}:
2016-09-26 18:52:21 +00:00
let
2020-08-22 02:20:28 +00:00
pythonEnv = python3.withPackages(ps: with ps; [
chardet
cheetah3
cherrypy
cryptography
configobj
feedparser
sabyenc3
]);
2021-01-15 07:07:56 +00:00
path = lib.makeBinPath [ par2cmdline unrar unzip p7zip ];
2016-09-26 18:52:21 +00:00
in stdenv.mkDerivation rec {
2021-06-21 12:57:43 +00:00
version = "3.3.1";
2017-02-14 13:14:27 +00:00
pname = "sabnzbd";
2017-02-14 13:14:27 +00:00
src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = version;
2021-06-21 12:57:43 +00:00
sha256 = "sha256-OcasqRu6nh9hKepMbXVgZ49MeJTlWK+qPSkiBPgmYYo=";
};
nativeBuildInputs = [ makeWrapper ];
buildInputs = [ pythonEnv ];
2016-09-26 18:52:21 +00:00
installPhase = ''
2021-06-21 12:57:43 +00:00
runHook preInstall
2016-09-26 18:52:21 +00:00
mkdir -p $out
cp -R * $out/
mkdir $out/bin
echo "${pythonEnv}/bin/python $out/SABnzbd.py \$*" > $out/bin/sabnzbd
chmod +x $out/bin/sabnzbd
wrapProgram $out/bin/sabnzbd --set PATH ${path}
2021-06-21 12:57:43 +00:00
runHook postInstall
2016-09-26 18:52:21 +00:00
'';
meta = with lib; {
description = "Usenet NZB downloader, par2 repairer and auto extracting server";
homepage = "https://sabnzbd.org";
license = licenses.gpl2Plus;
platforms = platforms.linux;
2021-01-15 07:07:56 +00:00
maintainers = with lib.maintainers; [ fridh ];
};
}