From 621a9ac46c0ac8a52f91ba052c9e0f05a81ac22d Mon Sep 17 00:00:00 2001 From: rnhmjoj Date: Thu, 4 Feb 2016 20:36:02 +0100 Subject: arx-libertatis: init at version 2016-02-02 --- pkgs/games/arx-libertatis/default.nix | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 pkgs/games/arx-libertatis/default.nix (limited to 'pkgs/games/arx-libertatis/default.nix') diff --git a/pkgs/games/arx-libertatis/default.nix b/pkgs/games/arx-libertatis/default.nix new file mode 100644 index 00000000000..47c58cc13b3 --- /dev/null +++ b/pkgs/games/arx-libertatis/default.nix @@ -0,0 +1,32 @@ +{ stdenv, fetchgit, cmake, zlib, boost, + openal, glm, freetype, mesa, glew, SDL2 }: + +stdenv.mkDerivation rec { + name = "arx-libertatis-${version}"; + version = "2016-02-02"; + + src = fetchgit { + url = "https://github.com/arx/ArxLibertatis"; + rev = "205c6cda4d5ac10f3af4ea7bb89c2fc88dac7c9a"; + sha256 = "0dy81pk4r94qq720kk6ynkjp2wr3z9hzm9h1x46nkkpn7fj8srrn"; + }; + + buildInputs = [ + cmake zlib boost openal glm + freetype mesa glew SDL2 + ]; + + meta = with stdenv.lib; { + description = '' + A cross-platform, open source port of Arx Fatalis, a 2002 + first-person role-playing game / dungeon crawler + developed by Arkane Studios. + ''; + homepage = "http://arx-libertatis.org/"; + license = licenses.gpl3; + maintainers = with maintainers; [ rnhmjoj ]; + platform = platforms.all; + }; + +} + -- cgit 1.4.1