mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 06:53:01 +00:00
nethack: fix the last-minute fix
This commit is contained in:
parent
459a5c5803
commit
b6c9ce9b03
@ -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";
|
||||
@ -54,20 +54,21 @@ in stdenv.mkDerivation {
|
||||
mkdir -p $out/bin
|
||||
cat <<EOF >$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
|
||||
|
||||
RUNDIR=$(mktemp -d nethack)
|
||||
RUNDIR=\$(mktemp -td nethack.\$USER.XXXXX)
|
||||
|
||||
cleanup() {
|
||||
rm -rf $RUNDIR
|
||||
rm -rf \$RUNDIR
|
||||
}
|
||||
trap cleanup EXIT
|
||||
|
||||
cd $RUNDIR
|
||||
cd \$RUNDIR
|
||||
for i in ${userDir}/*; do
|
||||
ln -s \$i \$(basename \$i)
|
||||
done
|
||||
|
Loading…
Reference in New Issue
Block a user