Added sabnzbd usenet download tool :)

svn path=/nixpkgs/trunk/; revision=18293
This commit is contained in:
Wouter den Breejen 2009-11-08 19:53:54 +00:00
parent c28701c3d9
commit a83def2812
2 changed files with 35 additions and 0 deletions

View file

@ -0,0 +1,16 @@
source $stdenv/setup
tar xvfz $src
mv SABnzbd-* $out
-- Create a start script and let wrapProgram with toPythonPath wrap it so that python is started with cheetahTemplate in its importpath (classpath)
mkdir $out/bin
echo "$python/bin/python $out/SABnzbd.py" > $out/bin/sabnzbd.sh
chmod +x $out/bin/sabnzbd.sh
for i in $(cd $out/bin && ls); do
wrapProgram $out/bin/$i \
--prefix PYTHONPATH : "$(toPythonPath $python):$(toPythonPath $out):$(toPythonPath $cheetahTemplate)"
done
echo $out

View file

@ -0,0 +1,19 @@
{stdenv, fetchurl, python, cheetahTemplate, makeWrapper}:
stdenv.mkDerivation {
name = "sabnzbd-0.4.12";
src = fetchurl {
url = http://mesh.dl.sourceforge.net/project/sabnzbdplus/sabnzbdplus/sabnzbd-0.4.12/SABnzbd-0.4.12-src.tar.gz;
sha256 = "35ce4172688925ef608fba433ff676357dab7d2abdc1cf83112a1c99682fdd32";
};
buildInputs = [makeWrapper python cheetahTemplate];
inherit stdenv python cheetahTemplate;
builder = ./builder.sh;
meta = {
description = "Usenet NZB downloader, par2 repairer and auto extracting server.";
};
}