3
0
Fork 0
forked from mirrors/nixpkgs

Fixing webserver path..

svn path=/nixpkgs/trunk/; revision=34005
This commit is contained in:
Michael Raskin 2012-05-07 16:34:58 +00:00
parent 3a61a44035
commit 36b543a26e

View file

@ -106,7 +106,7 @@ stdenv.mkDerivation rec {
echo -e '#!/bin/sh' >> "$out/bin/julia-webserver"
echo -e "cd \"$out/share/julia\"" >> "$out/bin/julia-webserver"
echo -e '${lighttpd}/sbin/lighttpd -D -f ./ui/lighttpd.conf &' >> "$out/bin/julia-webserver"
echo -e '../../bin/julia-release-webserver -p 2001' >> "$out/bin/julia-webserver"
echo -e "'$out/bin/julia-release-webserver' -p 2001" >> "$out/bin/julia-webserver"
chmod a+x "$out/bin/julia-webserver"
'';