about summary refs log tree commit diff
path: root/pkgs/servers/sabnzbd/builder.sh
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/servers/sabnzbd/builder.sh')
-rw-r--r--pkgs/servers/sabnzbd/builder.sh16
1 files changed, 0 insertions, 16 deletions
diff --git a/pkgs/servers/sabnzbd/builder.sh b/pkgs/servers/sabnzbd/builder.sh
deleted file mode 100644
index 3a5c8adb421e..000000000000
--- a/pkgs/servers/sabnzbd/builder.sh
+++ /dev/null
@@ -1,16 +0,0 @@
-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
-chmod +x $out/bin/sabnzbd
-
-for i in $(cd $out/bin && ls); do
-  wrapProgram $out/bin/$i --prefix PYTHONPATH : "$(toPythonPath $python):$(toPythonPath $out):$(toPythonPath $cheetahTemplate):$(toPythonPath $sqlite3)" \
-                          --prefix PATH : "$par2cmdline/bin:$unzip/bin:$unrar/bin"
-done
-
-echo $out