3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/games/sil/default.nix

85 lines
2.7 KiB
Nix
Raw Normal View History

{ pkgs, lib, stdenv, fetchzip, ncurses, libX11, libXaw, libXt, libXext, libXmu
, makeWrapper, writeScript }:
2021-01-15 04:31:39 +00:00
let
2018-02-04 22:51:03 +00:00
setup = writeScript "setup" ''
mkdir -p "$ANGBAND_PATH"
# Copy all the data files into place
cp -ar $1/* "$ANGBAND_PATH"
# The copied files are not writable, make them so
chmod +w -R "$ANGBAND_PATH"
'';
in
stdenv.mkDerivation rec {
pname = "Sil";
2018-02-04 22:51:03 +00:00
version = "1.3.0";
src = fetchzip {
url = "http://www.amirrorclear.net/flowers/game/sil/Sil-130-src.zip";
sha256 = "1amp2mr3fxascra0k76sdsvikjh8g76nqh46kka9379zd35lfq8w";
stripRoot = false;
2018-02-04 22:51:03 +00:00
};
nativeBuildInputs = [ makeWrapper ];
buildInputs = [ ncurses libX11 libXaw libXt libXext libXmu ];
2018-02-04 22:51:03 +00:00
sourceRoot = "source/Sil/src";
makefile = "Makefile.std";
postPatch = ''
2018-02-04 22:51:03 +00:00
# Allow usage of ANGBAND_PATH
2021-01-15 04:31:39 +00:00
substituteInPlace config.h --replace "#define FIXED_PATHS" ""
2018-02-04 22:51:03 +00:00
'';
preConfigure = ''
buildFlagsArray+=("LIBS=-lXaw -lXext -lSM -lICE -lXmu -lXt -lX11 -lncurses")
'';
# Workaround build failure on -fno-common toolchains like upstream
# gcc-10. Otherwise build fails as:
# ld: main.o:/build/source/Sil/src/externs.h:57: multiple definition of
# `mini_screenshot_char'; variable.o:/build/source/Sil/src/externs.h:57: first defined here
NIX_CFLAGS_COMPILE = "-fcommon";
2018-02-04 22:51:03 +00:00
installPhase = ''
runHook preInstall
# the makefile doesn't have a sensible install target, so we have to do it ourselves
2018-02-04 22:51:03 +00:00
mkdir -p $out/bin
cp sil $out/bin/sil
# Wrap the program to set a user-local ANGBAND_PATH, and run the setup script to copy files into place.
2021-01-15 04:31:39 +00:00
# We could just use the options for a user-local save and scores dir, but it tried to write to the
2018-02-04 22:51:03 +00:00
# lib directory anyway, so we might as well give everyone a copy
wrapProgram $out/bin/sil \
--run "export ANGBAND_PATH=\$HOME/.sil" \
--run "${setup} ${src}/Sil/lib"
runHook postInstall
2018-02-04 22:51:03 +00:00
'';
passthru.tests = {
saveDirCreation = pkgs.runCommand "save-dir-creation" {} ''
HOME=$(pwd) ${lib.getExe pkgs.sil} --help
test -d .sil && touch $out
'';
};
2018-02-04 22:51:03 +00:00
meta = {
description = "A rogue-like game set in the First Age of Middle-earth";
2018-02-04 22:51:03 +00:00
longDescription = ''
A game of adventure set in the First Age of Middle-earth, when the world still
rang with Elven song and gleamed with Dwarven mail.
2018-02-04 22:51:03 +00:00
2021-01-15 04:31:39 +00:00
Walk the dark halls of Angband. Slay creatures black and fell. Wrest a shining
2018-02-04 22:51:03 +00:00
Silmaril from Morgoths iron crown.
'';
homepage = "http://www.amirrorclear.net/flowers/game/sil/index.html";
2021-01-15 04:31:39 +00:00
license = lib.licenses.gpl2;
maintainers = with lib.maintainers; [ michaelpj kenran ];
2021-01-15 04:31:39 +00:00
platforms = lib.platforms.linux;
mainProgram = "sil";
2018-02-04 22:51:03 +00:00
};
}