nixpkgs/pkgs/games/frotz/default.nix

44 lines
1.1 KiB
Nix
Raw Normal View History

{ fetchFromGitLab
, libao
, libmodplug
, libsamplerate
, libsndfile
, libvorbis
, ncurses
2021-05-15 12:18:41 +00:00
, which
, pkg-config
, lib, stdenv }:
stdenv.mkDerivation rec {
2021-03-03 09:28:44 +00:00
version = "2.53";
pname = "frotz";
src = fetchFromGitLab {
domain = "gitlab.com";
owner = "DavidGriffith";
repo = "frotz";
rev = version;
2021-03-03 09:28:44 +00:00
sha256 = "sha256-xVC/iE71W/Wdy5aPGH9DtcVAHWCcg3HkEA3iDV6OYUo=";
};
2021-05-15 12:18:41 +00:00
nativeBuildInputs = [ which pkg-config ];
buildInputs = [ libao libmodplug libsamplerate libsndfile libvorbis ncurses ];
preBuild = ''
makeFlagsArray+=(
CC="cc"
CFLAGS="-D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600"
LDFLAGS="-lncursesw -ltinfo"
)
'';
installFlags = [ "PREFIX=$(out)" ];
meta = with lib; {
homepage = "https://davidgriffith.gitlab.io/frotz/";
changelog = "https://gitlab.com/DavidGriffith/frotz/-/raw/${version}/NEWS";
description = "A z-machine interpreter for Infocom games and other interactive fiction";
platforms = platforms.unix;
maintainers = with maintainers; [ nicknovitski ddelabru ];
license = licenses.gpl2;
};
}