nixpkgs/pkgs/games/exult/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

63 lines
1.4 KiB
Nix
Raw Normal View History

2022-09-01 10:50:02 +00:00
{ lib
, stdenv
, fetchFromGitHub
, SDL2
, autoconf
, automake
, libogg
, libtool
, libvorbis
, pkg-config
, zlib
, enableTools ? false
}:
2014-07-22 12:51:05 +00:00
stdenv.mkDerivation rec {
2021-06-22 21:44:58 +00:00
pname = "exult";
2022-09-01 10:50:02 +00:00
version = "1.8";
2014-07-22 12:51:05 +00:00
2022-09-01 10:50:02 +00:00
src = fetchFromGitHub {
owner = "exult";
repo = "exult";
rev = "v${version}";
hash = "sha256-Y7FpgiGuqR4ZG/PNSfLcNcRWeeC7GebUTighXsCfy+E=";
};
2022-09-01 10:50:02 +00:00
nativeBuildInputs = [
autoconf
automake
libtool
pkg-config
];
buildInputs = [
SDL2
libogg
libvorbis
zlib
];
preConfigure = ''
./autogen.sh
'';
configureFlags = lib.optional (!enableTools) "--disable-tools";
meta = with lib; {
description = "Exult is a project to recreate Ultima VII for modern operating systems";
longDescription = ''
Ultima VII, an RPG from the early 1990's, still has a huge following. But,
being a DOS game with a very nonstandard memory manager, it is difficult
to run it on the latest computers. Exult is a project that created an
Ultima VII game engine that runs on modern operating systems, capable of
using the data and graphics files that come with the game. Exult aims to
let those people who own Ultima VII play the game on modern hardware, in
as close to (or perhaps even surpassing) its original splendor as is
possible.
'';
homepage = "http://exult.info";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ azahi eelco ];
};
}