summaryrefslogtreecommitdiffstats
path: root/pkgs/games/fsg
diff options
context:
space:
mode:
authorMichael Raskin <7c6f434c@mail.ru>2012-11-10 15:09:42 +0400
committerMichael Raskin <7c6f434c@mail.ru>2012-11-10 15:09:42 +0400
commit66164a941be7b7bb697f9929114e67be4399b678 (patch)
tree0dfbb5f8c199786ae201b63f90f3d82c79f1b229 /pkgs/games/fsg
parent426b75c0a45655a0cca602e22ff96df2185228a9 (diff)
FSG: Fix unneeded /bin/sh reference
Diffstat (limited to 'pkgs/games/fsg')
-rw-r--r--pkgs/games/fsg/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/games/fsg/default.nix b/pkgs/games/fsg/default.nix
index b2210141f574..7a9dc1105408 100644
--- a/pkgs/games/fsg/default.nix
+++ b/pkgs/games/fsg/default.nix
@@ -39,7 +39,7 @@ stdenv.mkDerivation {
installPhase = ''
mkdir -p $out/bin $out/libexec
cp sand $out/libexec
- echo -e '#! /bin/sh\nLC_ALL=C '$out'/libexec/sand "$@"' >$out/bin/fsg
+ echo -e '#!${stdenv.shell}\nLC_ALL=C '$out'/libexec/sand "$@"' >$out/bin/fsg
chmod a+x $out/bin/fsg
'';