texlab: 5.22.0 -> 5.22.1 (#377893)
[NixPkgs.git] / pkgs / games / exult / default.nix
blob4f26dbed108a5160f2bf6e28e70b735c35ec95ca
2   lib,
3   stdenv,
4   fetchFromGitHub,
5   SDL2,
6   autoconf,
7   autoconf-archive,
8   autoreconfHook,
9   automake,
10   libogg,
11   libtool,
12   libvorbis,
13   pkg-config,
14   zlib,
15   enableTools ? false,
16   # Darwin-specific
17   AudioUnit,
20 stdenv.mkDerivation rec {
21   pname = "exult";
22   version = "1.10.1";
24   src = fetchFromGitHub {
25     owner = "exult";
26     repo = "exult";
27     rev = "v${version}";
28     hash = "sha256-NlvtYtmJNYhOC1BtIxIij3NEQHWAGOeD4XgRq7evjzE=";
29   };
31   # We can't use just DESTDIR because with it we'll have /nix/store/...-exult-1.10.1/nix/store/...-exult-1.10.1/bin
32   postPatch = ''
33     substituteInPlace macosx/macosx.am \
34       --replace-fail DESTDIR NIX_DESTDIR
35   '';
37   nativeBuildInputs = [
38     autoconf
39     autoconf-archive
40     autoreconfHook
41     automake
42     libtool
43     pkg-config
44   ];
46   buildInputs =
47     [
48       SDL2
49       libogg
50       libvorbis
51       zlib
52     ]
53     ++ lib.optionals stdenv.hostPlatform.isDarwin [
54       AudioUnit
55     ];
57   enableParallelBuilding = true;
59   makeFlags = [ "NIX_DESTDIR=$(out)" ]; # see postPatch
60   configureFlags = lib.optional (!enableTools) "--disable-tools";
62   meta = with lib; {
63     description = "Exult is a project to recreate Ultima VII for modern operating systems";
64     longDescription = ''
65       Ultima VII, an RPG from the early 1990's, still has a huge following. But,
66       being a DOS game with a very nonstandard memory manager, it is difficult
67       to run it on the latest computers. Exult is a project that created an
68       Ultima VII game engine that runs on modern operating systems, capable of
69       using the data and graphics files that come with the game. Exult aims to
70       let those people who own Ultima VII play the game on modern hardware, in
71       as close to (or perhaps even surpassing) its original splendor as is
72       possible.
73     '';
74     homepage = "http://exult.info";
75     license = licenses.gpl2Plus;
76     maintainers = with maintainers; [ azahi ];
77     mainProgram = "exult";
78   };