about summary refs log tree commit diff
path: root/pkgs/servers/sabnzbd
diff options
context:
space:
mode:
authorWouter den Breejen <uu@denbreejen.net>2009-11-08 19:59:56 +0000
committerWouter den Breejen <uu@denbreejen.net>2009-11-08 19:59:56 +0000
commitd24e7434ec3f35ab123c78252686cff411a591dc (patch)
tree3af3226bbc976826bc7798a256bab97719220e3e /pkgs/servers/sabnzbd
parent123e595990276b71c79c26ff1f20cccea6bcb756 (diff)
downloadnixlib-d24e7434ec3f35ab123c78252686cff411a591dc.tar
nixlib-d24e7434ec3f35ab123c78252686cff411a591dc.tar.gz
nixlib-d24e7434ec3f35ab123c78252686cff411a591dc.tar.bz2
nixlib-d24e7434ec3f35ab123c78252686cff411a591dc.tar.lz
nixlib-d24e7434ec3f35ab123c78252686cff411a591dc.tar.xz
nixlib-d24e7434ec3f35ab123c78252686cff411a591dc.tar.zst
nixlib-d24e7434ec3f35ab123c78252686cff411a591dc.zip
Added sabnzbd usenet download tool :)
svn path=/nixpkgs/trunk/; revision=18295
Diffstat (limited to 'pkgs/servers/sabnzbd')
-rw-r--r--pkgs/servers/sabnzbd/builder.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/servers/sabnzbd/builder.sh b/pkgs/servers/sabnzbd/builder.sh
index 9613d24d67d6..fb6f48d8b4cb 100644
--- a/pkgs/servers/sabnzbd/builder.sh
+++ b/pkgs/servers/sabnzbd/builder.sh
@@ -3,10 +3,10 @@ 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)
+# 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
+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 \