nixpkgs/pkgs/servers/sabnzbd/default.nix

37 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
2017-02-14 13:19:38 +00:00
pythonEnv = python2.withPackages(ps: with ps; [ cryptography cheetah yenc ]);
2016-09-26 18:52:21 +00:00
path = stdenv.lib.makeBinPath [ par2cmdline unrar unzip p7zip ];
in stdenv.mkDerivation rec {
2017-02-25 16:09:09 +00:00
version = "1.2.1";
2017-02-14 13:14:27 +00:00
pname = "sabnzbd";
name = "${pname}-${version}";
2017-02-14 13:14:27 +00:00
src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = version;
2017-02-25 16:09:09 +00:00
sha256 = "1rw6f455p0n8qigzkvnlr0d6rzkx2mpzhcp7m0j8fwqdbq831q8y";
};
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";
homepage = http://sabnzbd.org;
license = licenses.gpl2Plus;
platforms = platforms.linux;
2016-09-26 18:52:21 +00:00
maintainers = with stdenv.lib.maintainers; [ fridh ];
};
}