nixpkgs/pkgs/games/solarus/default.nix

35 lines
942 B
Nix
Raw Normal View History

2016-07-06 03:33:51 +02:00
{ stdenv, fetchFromGitHub, cmake, luajit,
SDL2, SDL2_image, SDL2_ttf, physfs,
openal, libmodplug, libvorbis}:
stdenv.mkDerivation rec {
name = "solarus-${version}";
version = "1.4.5";
2017-11-27 17:13:56 +01:00
2016-07-06 03:33:51 +02:00
src = fetchFromGitHub {
owner = "christopho";
repo = "solarus";
rev = "d9fdb9fdb4e1b9fc384730a9279d134ae9f2c70e";
sha256 = "0xjx789d6crm322wmkqyq9r288vddsha59yavhy78c4r01gs1p5v";
};
2017-11-27 17:13:56 +01:00
2016-07-06 03:33:51 +02:00
buildInputs = [ cmake luajit SDL2
SDL2_image SDL2_ttf physfs
openal libmodplug libvorbis ];
2017-11-27 17:13:56 +01:00
enableParallelBuilding = true;
2016-07-06 03:33:51 +02:00
meta = with stdenv.lib; {
description = "A Zelda-like ARPG game engine";
longDescription = ''
Solarus is a game engine for Zelda-like ARPG games written in lua.
Many full-fledged games have been writen for the engine.
'';
homepage = http://www.solarus-games.org;
license = licenses.gpl3;
maintainers = [ maintainers.Nate-Devv ];
platforms = platforms.linux;
};
2017-11-27 17:13:56 +01:00
2016-07-06 03:33:51 +02:00
}