summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@viric.name>2013-04-21 10:57:24 +0400
committerLluís Batlle i Rossell <viric@viric.name>2013-04-21 10:59:20 +0400
commit9d818bebd883ea3d0e302c1a90964918a56ffe57 (patch)
tree5584318a08d83fa9898d60431c61016bf0071351 /pkgs/applications
parente83c2fa4a060863ee580e7decbbb994a520bfa05 (diff)
downloadnixlib-9d818bebd883ea3d0e302c1a90964918a56ffe57.tar
nixlib-9d818bebd883ea3d0e302c1a90964918a56ffe57.tar.gz
nixlib-9d818bebd883ea3d0e302c1a90964918a56ffe57.tar.bz2
nixlib-9d818bebd883ea3d0e302c1a90964918a56ffe57.tar.lz
nixlib-9d818bebd883ea3d0e302c1a90964918a56ffe57.tar.xz
nixlib-9d818bebd883ea3d0e302c1a90964918a56ffe57.tar.zst
nixlib-9d818bebd883ea3d0e302c1a90964918a56ffe57.zip
Fixing the startup script of freenet; I forgot the shebang
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/networking/p2p/freenet/default.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkgs/applications/networking/p2p/freenet/default.nix b/pkgs/applications/networking/p2p/freenet/default.nix
index 8fb1a00ec328..67037a071327 100644
--- a/pkgs/applications/networking/p2p/freenet/default.nix
+++ b/pkgs/applications/networking/p2p/freenet/default.nix
@@ -40,6 +40,7 @@ stdenv.mkDerivation {
     cp dist/freenet.jar $out/share/freenet
 
     cat <<EOF > $out/bin/freenet
+    #!${stdenv.shell}
     ${jre}/bin/java -cp $out/share/freenet/bcprov.jar:$out/share/freenet/freenet-ext.jar:$out/share/freenet/freenet.jar \\
       -Xmx1024M freenet.node.NodeStarter
     EOF