2017-02-14 14:14:27 +01:00
|
|
|
{stdenv, fetchFromGitHub, python2, par2cmdline, unzip, unrar, p7zip, makeWrapper}:
|
2009-11-08 20:53:54 +01:00
|
|
|
|
2016-09-26 20:52:21 +02:00
|
|
|
let
|
2018-07-27 20:02:11 +02:00
|
|
|
pythonEnv = python2.withPackages(ps: with ps; [ cryptography cheetah yenc sabyenc ]);
|
2016-09-26 20:52:21 +02:00
|
|
|
path = stdenv.lib.makeBinPath [ par2cmdline unrar unzip p7zip ];
|
|
|
|
in stdenv.mkDerivation rec {
|
2018-04-23 18:06:07 +02:00
|
|
|
version = "2.3.3";
|
2017-02-14 14:14:27 +01:00
|
|
|
pname = "sabnzbd";
|
|
|
|
name = "${pname}-${version}";
|
2015-12-13 15:45:14 +01:00
|
|
|
|
2017-02-14 14:14:27 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = pname;
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2018-04-23 18:06:07 +02:00
|
|
|
sha256 = "0za4xjc4x44f7i30r86bbza3zppid333ifwzp5h526w3zak1lal8";
|
2009-11-08 20:53:54 +01:00
|
|
|
};
|
|
|
|
|
2016-09-26 20:52:21 +02:00
|
|
|
buildInputs = [ pythonEnv makeWrapper ];
|
2009-11-08 20:53:54 +01:00
|
|
|
|
2016-09-26 20:52:21 +02: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 19:46:55 +02:00
|
|
|
wrapProgram $out/bin/sabnzbd --set PATH ${path}
|
2016-09-26 20:52:21 +02:00
|
|
|
'';
|
2015-12-13 15:45:14 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2013-10-06 11:49:53 +02:00
|
|
|
description = "Usenet NZB downloader, par2 repairer and auto extracting server";
|
2018-06-30 02:18:27 +02:00
|
|
|
homepage = https://sabnzbd.org;
|
2015-12-13 15:45:14 +01:00
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
platforms = platforms.linux;
|
2016-09-26 20:52:21 +02:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ fridh ];
|
2009-11-08 20:53:54 +01:00
|
|
|
};
|
|
|
|
}
|