Skip to content

Commit

Permalink
openrw: 2016-06-29 -> 2017-09-17
Browse files Browse the repository at this point in the history
fixes build
  • Loading branch information
globin committed Sep 28, 2017
1 parent 8e38de4 commit 595c8fa
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions pkgs/games/openrw/default.nix
@@ -1,16 +1,20 @@
{ stdenv, fetchgit, cmake, sfml, mesa, bullet, glm, libmad, x11 }:
{ stdenv, fetchgit, cmake, sfml, mesa, bullet, glm, libmad, x11, openal
, SDL2, boost, ffmpeg }:

stdenv.mkDerivation rec {
version = "2016-06-29";
version = "2017-09-17";
name = "openrw-${version}";

src = fetchgit {
url = "https://github.com/rwengine/openrw";
rev = "46a7254a41d9f6e1eda8d31e742de492abb2540e";
sha256 = "16ip9779dy59xcj9src2i4zp8jq2h0h5mb4a7d5cpkhd3xlcpabm";
rev = "11e90c61e56b60240251cd080f175ddff7d7a101";
sha256 = "16qklk9yc4ssxxkicxvww4gmg1c7cm6vhyilyv287vhz1fq9sz49";
fetchSubmodules = true;
};

buildInputs = [ cmake sfml mesa bullet glm libmad x11 ];
buildInputs = [
cmake sfml mesa bullet glm libmad x11 openal SDL2 boost ffmpeg
];

meta = with stdenv.lib; {
description = "Unofficial open source recreation of the classic Grand Theft Auto III game executable";
Expand Down

0 comments on commit 595c8fa

Please sign in to comment.