From b6c9ce9b038bf5af6e6a6bed791efbb32d2edb3f Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Tue, 8 Dec 2015 18:10:53 +0300 Subject: nethack: fix the last-minute fix --- pkgs/games/nethack/default.nix | 41 +++++++++++++++++++++-------------------- 1 file changed, 21 insertions(+), 20 deletions(-) (limited to 'pkgs/games/nethack') diff --git a/pkgs/games/nethack/default.nix b/pkgs/games/nethack/default.nix index d3a510e2952..05c39fb2f2b 100644 --- a/pkgs/games/nethack/default.nix +++ b/pkgs/games/nethack/default.nix @@ -8,7 +8,7 @@ let if stdenv.isLinux then "linux" # We probably want something different for Darwin else "unix"; - userDir = "~/.local/nethack"; + userDir = "~/.config/nethack"; in stdenv.mkDerivation { name = "nethack-3.6.0"; @@ -53,28 +53,29 @@ in stdenv.mkDerivation { mkdir -p $out/bin cat <$out/bin/nethack - #! ${stdenv.shell} -e - if [ ! -d ${userDir} ]; then - mkdir -p ${userDir} - cp -r $out/games/lib/nethackuserdir/* ${userDir} - chmod -R +w ${userDir} - fi + #! ${stdenv.shell} -e - RUNDIR=$(mktemp -d nethack) + if [ ! -d ${userDir} ]; then + mkdir -p ${userDir} + cp -r $out/games/lib/nethackuserdir/* ${userDir} + chmod -R +w ${userDir} + fi - cleanup() { - rm -rf $RUNDIR - } - trap cleanup EXIT + RUNDIR=\$(mktemp -td nethack.\$USER.XXXXX) - cd $RUNDIR - for i in ${userDir}/*; do - ln -s \$i \$(basename \$i) - done - for i in $out/games/lib/nethackdir/*; do - ln -s \$i \$(basename \$i) - done - $out/games/nethack + cleanup() { + rm -rf \$RUNDIR + } + trap cleanup EXIT + + cd \$RUNDIR + for i in ${userDir}/*; do + ln -s \$i \$(basename \$i) + done + for i in $out/games/lib/nethackdir/*; do + ln -s \$i \$(basename \$i) + done + $out/games/nethack EOF chmod +x $out/bin/nethack ''; -- cgit 1.4.1