1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
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 19:52:21 +01:00
let
2017-01-11 17:12:05 +00:00
pythonEnv = python2.withPackages(ps: with ps; [ pyopenssl cheetah yenc ]);
2016-09-26 19:52:21 +01:00
path = stdenv.lib.makeBinPath [ par2cmdline unrar unzip p7zip ];
in stdenv.mkDerivation rec {
2017-02-14 13:14:27 +00:00
version = "1.2.0";
pname = "sabnzbd";
name = "${pname}-${version}";
2017-02-14 13:14:27 +00:00
src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = version;
sha256 = "1g1zf0zrlqgparg6hws6agpr414dw2q4xq9l8nh720rn6m7fv4vb";
};
2016-09-26 19:52:21 +01:00
buildInputs = [ pythonEnv makeWrapper ];
2016-09-26 19:52:21 +01: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 19:52:21 +01: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 19:52:21 +01:00
maintainers = with stdenv.lib.maintainers; [ fridh ];
};
}