nixpkgs/pkgs/games/solarus/default.nix

37 lines
941 B
Nix
Raw Normal View History

2018-09-05 02:03:56 +00:00
{ stdenv, fetchFromGitLab, cmake, luajit,
2016-07-06 01:33:51 +00:00
SDL2, SDL2_image, SDL2_ttf, physfs,
2018-09-05 02:03:56 +00:00
openal, libmodplug, libvorbis,
qtbase, qttools }:
2016-07-06 01:33:51 +00:00
stdenv.mkDerivation rec {
pname = "solarus";
version = "1.6.2";
2017-11-27 16:13:56 +00:00
2018-09-05 02:03:56 +00:00
src = fetchFromGitLab {
owner = "solarus-games";
repo = pname;
rev = "v${version}";
sha256 = "0d0xfjbmamz84aajxfc0fwrj8862xxbxz6n4xnc05r1m4g7gba77";
2016-07-06 01:33:51 +00:00
};
2017-11-27 16:13:56 +00:00
2016-07-06 01:33:51 +00:00
buildInputs = [ cmake luajit SDL2
SDL2_image SDL2_ttf physfs
2018-09-05 02:03:56 +00:00
openal libmodplug libvorbis
qtbase qttools ];
2016-07-06 01:33:51 +00:00
2017-11-27 16:13:56 +00:00
enableParallelBuilding = true;
2016-07-06 01:33:51 +00: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 16:13:56 +00:00
2016-07-06 01:33:51 +00:00
}