mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
Merge pull request #12825 from rnhmjoj/arx
arx-libertatis: init at version 2016-02-02
This commit is contained in:
commit
8c440be8cf
2 changed files with 34 additions and 0 deletions
32
pkgs/games/arx-libertatis/default.nix
Normal file
32
pkgs/games/arx-libertatis/default.nix
Normal file
|
@ -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;
|
||||
};
|
||||
|
||||
}
|
||||
|
|
@ -14109,6 +14109,8 @@ let
|
|||
anki = callPackage ../games/anki { };
|
||||
|
||||
armagetronad = callPackage ../games/armagetronad { };
|
||||
|
||||
arx-libertatis = callPackage ../games/arx-libertatis { };
|
||||
|
||||
asc = callPackage ../games/asc {
|
||||
lua = lua5_1;
|
||||
|
|
Loading…
Reference in a new issue