2020-08-22 02:20:28 +00:00
|
|
|
{ stdenv
|
|
|
|
, fetchFromGitHub
|
|
|
|
, python3
|
|
|
|
, par2cmdline
|
|
|
|
, unzip
|
|
|
|
, unrar
|
|
|
|
, p7zip
|
|
|
|
, makeWrapper
|
|
|
|
}:
|
2009-11-08 19:53:54 +00:00
|
|
|
|
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
|
|
|
|
]);
|
2016-09-26 18:52:21 +00:00
|
|
|
path = stdenv.lib.makeBinPath [ par2cmdline unrar unzip p7zip ];
|
|
|
|
in stdenv.mkDerivation rec {
|
2020-08-22 02:20:28 +00:00
|
|
|
version = "3.0.1";
|
2017-02-14 13:14:27 +00:00
|
|
|
pname = "sabnzbd";
|
2015-12-13 14:45:14 +00:00
|
|
|
|
2017-02-14 13:14:27 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = pname;
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2020-08-22 02:20:28 +00:00
|
|
|
sha256 = "1zp8cxz56qmai1z6xcscnq85gxhv64dv1s5zqsqdn0zpbxyqqdlr";
|
2009-11-08 19:53:54 +00:00
|
|
|
};
|
|
|
|
|
2016-09-26 18:52:21 +00:00
|
|
|
buildInputs = [ pythonEnv makeWrapper ];
|
2009-11-08 19:53:54 +00:00
|
|
|
|
2016-09-26 18:52:21 +00:00
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out
|
|
|
|
cp -R * $out/
|
|
|
|
mkdir $out/bin
|
|
|
|
echo "${pythonEnv}/bin/python $out/SABnzbd.py \$*" > $out/bin/sabnzbd
|
|
|
|
chmod +x $out/bin/sabnzbd
|
2016-09-27 17:46:55 +00:00
|
|
|
wrapProgram $out/bin/sabnzbd --set PATH ${path}
|
2016-09-26 18:52:21 +00:00
|
|
|
'';
|
2015-12-13 14:45:14 +00:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2013-10-06 09:49:53 +00:00
|
|
|
description = "Usenet NZB downloader, par2 repairer and auto extracting server";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://sabnzbd.org";
|
2015-12-13 14:45:14 +00:00
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
platforms = platforms.linux;
|
2016-09-26 18:52:21 +00:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ fridh ];
|
2009-11-08 19:53:54 +00:00
|
|
|
};
|
|
|
|
}
|