summary refs log tree commit diff
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)
downloadnixpkgs-66164a941be7b7bb697f9929114e67be4399b678.tar
nixpkgs-66164a941be7b7bb697f9929114e67be4399b678.tar.gz
nixpkgs-66164a941be7b7bb697f9929114e67be4399b678.tar.bz2
nixpkgs-66164a941be7b7bb697f9929114e67be4399b678.tar.lz
nixpkgs-66164a941be7b7bb697f9929114e67be4399b678.tar.xz
nixpkgs-66164a941be7b7bb697f9929114e67be4399b678.tar.zst
nixpkgs-66164a941be7b7bb697f9929114e67be4399b678.zip
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 b2210141f57..7a9dc110540 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
   '';