sabnzbd: 0.7.20 -> 1.1.0

This commit is contained in:
Frederik Rietdijk 2016-09-26 20:52:21 +02:00
parent b6f3e08019
commit a1f6a1a938
2 changed files with 18 additions and 22 deletions

View file

@ -1,13 +0,0 @@
source $stdenv/setup
tar xvfz $src
mv SABnzbd-* $out
mkdir $out/bin
echo "$python/bin/python $out/SABnzbd.py \$*" > $out/bin/sabnzbd
chmod +x $out/bin/sabnzbd
wrapPythonProgramsIn $out/bin "$pythonPath"
wrapProgram $out/bin/.sabnzbd-wrapped --prefix PATH : "$par2cmdline/bin:$unzip/bin:$unrar/bin"
echo $out

View file

@ -1,24 +1,33 @@
{stdenv, fetchurl, python, pythonPackages, par2cmdline, unzip, unrar}:
{stdenv, fetchurl, python, par2cmdline, unzip, unrar, p7zip, makeWrapper}:
stdenv.mkDerivation rec {
version = "0.7.20";
let
pythonEnv = python.withPackages(ps: with ps; [ pyopenssl python.modules.sqlite3 cheetah]);
path = stdenv.lib.makeBinPath [ par2cmdline unrar unzip p7zip ];
in stdenv.mkDerivation rec {
version = "1.1.0";
name = "sabnzbd-${version}";
src = fetchurl {
url = "mirror://sourceforge/sabnzbdplus/SABnzbd-${version}-src.tar.gz";
sha256 = "0hl7mwgyvm4d68346s7vlv0qlibfh2p2idpyzpjfvk8f79hs9cr0";
url = "https://github.com/sabnzbd/sabnzbd/archive/${version}.tar.gz";
sha256 = "16srhknmjx5x2zsg1m0w9bipcv9b3b96bvb27fkf4dc2aswwcsc7";
};
pythonPath = with pythonPackages; [ pyopenssl sqlite3 cheetah ];
buildInputs = with pythonPackages; [wrapPython];
inherit python par2cmdline unzip unrar;
buildInputs = [ pythonEnv makeWrapper ];
builder = ./builder.sh;
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}
'';
meta = with stdenv.lib; {
description = "Usenet NZB downloader, par2 repairer and auto extracting server";
homepage = http://sabnzbd.org;
license = licenses.gpl2Plus;
platforms = platforms.linux;
maintainers = with stdenv.lib.maintainers; [ fridh ];
};
}