2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, fetchpatch, util-linux, ncurses, flex, bison }:
|
2015-06-29 12:19:23 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "unnethack";
|
2020-09-15 04:48:49 +01:00
|
|
|
version = "5.3.2";
|
2015-06-29 12:19:23 +01:00
|
|
|
|
2020-09-15 04:48:49 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
name = "UnNetHack";
|
|
|
|
owner = "UnNetHack";
|
|
|
|
repo = "UnNetHack";
|
|
|
|
rev = version;
|
|
|
|
sha256 = "1rg0mqyplgn3dfh3wz09a600qxk7aidqw4d84kyiincljvhyb7ps";
|
2015-06-29 12:19:23 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ ncurses ];
|
|
|
|
|
2020-11-24 15:29:28 +00:00
|
|
|
nativeBuildInputs = [ util-linux flex bison ];
|
2015-06-29 12:19:23 +01:00
|
|
|
|
|
|
|
configureFlags = [ "--enable-curses-graphics"
|
|
|
|
"--disable-tty-graphics"
|
|
|
|
"--with-owner=no"
|
|
|
|
"--with-group=no"
|
|
|
|
"--with-gamesdir=/tmp/unnethack"
|
|
|
|
];
|
|
|
|
|
2017-06-16 13:24:39 +01:00
|
|
|
makeFlags = [ "GAMEPERM=744" ];
|
2020-09-15 04:48:49 +01:00
|
|
|
patches = [
|
|
|
|
# fix regression with bison, merged in master
|
|
|
|
(fetchpatch {
|
|
|
|
name = "fix-bison.patch";
|
|
|
|
url = "https://github.com/UnNetHack/UnNetHack/commit/04f0a3a850a94eb8837ddcef31303968240d1c31.patch";
|
|
|
|
sha256 = "1zblbwqqz9nx16k6n31wi2hdvz775lvzmkjblmrx18nbm4ylj0n9";
|
|
|
|
})
|
|
|
|
];
|
2017-06-16 13:24:39 +01:00
|
|
|
|
2019-06-03 16:42:59 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2015-06-29 12:19:23 +01:00
|
|
|
postInstall = ''
|
|
|
|
cp -r /tmp/unnethack $out/share/unnethack/profile
|
|
|
|
mv $out/bin/unnethack $out/bin/.wrapped_unnethack
|
|
|
|
cat <<EOF >$out/bin/unnethack
|
|
|
|
#! ${stdenv.shell} -e
|
|
|
|
if [ ! -d ~/.unnethack ]; then
|
|
|
|
mkdir -p ~/.unnethack
|
|
|
|
cp -r $out/share/unnethack/profile/* ~/.unnethack
|
|
|
|
chmod -R +w ~/.unnethack
|
|
|
|
fi
|
|
|
|
|
|
|
|
ln -s ~/.unnethack /tmp/unnethack
|
|
|
|
|
|
|
|
cleanup() {
|
|
|
|
rm -rf /tmp/unnethack
|
|
|
|
}
|
|
|
|
trap cleanup EXIT
|
|
|
|
|
|
|
|
$out/bin/.wrapped_unnethack
|
|
|
|
EOF
|
|
|
|
chmod +x $out/bin/unnethack
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2015-06-29 12:19:23 +01:00
|
|
|
description = "Fork of NetHack";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://unnethack.wordpress.com/";
|
2015-06-29 12:19:23 +01:00
|
|
|
license = "nethack";
|
|
|
|
platforms = platforms.all;
|
|
|
|
maintainers = with maintainers; [ abbradar ];
|
2020-09-15 04:48:49 +01:00
|
|
|
};
|
2015-06-29 12:19:23 +01:00
|
|
|
}
|