nixpkgs/pkgs/servers/sabnzbd/default.nix

36 lines
1 KiB
Nix
Raw Normal View History

2017-02-14 13:14:27 +00:00
{stdenv, fetchFromGitHub, python2, par2cmdline, unzip, unrar, p7zip, makeWrapper}:
2016-09-26 18:52:21 +00:00
let
2018-07-27 18:02:11 +00:00
pythonEnv = python2.withPackages(ps: with ps; [ cryptography cheetah yenc sabyenc ]);
2016-09-26 18:52:21 +00:00
path = stdenv.lib.makeBinPath [ par2cmdline unrar unzip p7zip ];
in stdenv.mkDerivation rec {
2019-06-04 19:25:35 +00:00
version = "2.3.9";
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;
2019-06-04 19:25:35 +00:00
sha256 = "06ln00rqz4xpsqhq0f495893xq1w5dfjawb8dgfyjjfds8627p16";
};
2016-09-26 18:52:21 +00:00
buildInputs = [ pythonEnv makeWrapper ];
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
wrapProgram $out/bin/sabnzbd --set PATH ${path}
2016-09-26 18:52:21 +00:00
'';
meta = with stdenv.lib; {
description = "Usenet NZB downloader, par2 repairer and auto extracting server";
2018-06-30 00:18:27 +00:00
homepage = https://sabnzbd.org;
license = licenses.gpl2Plus;
platforms = platforms.linux;
2016-09-26 18:52:21 +00:00
maintainers = with stdenv.lib.maintainers; [ fridh ];
};
}