nixpkgs/pkgs/games/solarus/default.nix

43 lines
1 KiB
Nix
Raw Permalink Normal View History

{ lib, mkDerivation, fetchFromGitLab, cmake, luajit
, SDL2, SDL2_image, SDL2_ttf, physfs, glm
, openal, libmodplug, libvorbis
, qtbase, qttools }:
2016-07-06 01:33:51 +00:00
mkDerivation rec {
pname = "solarus";
version = "1.6.4";
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 = "sbdlf+R9OskDQ5U5rqUX2gF8l/fj0sDJv6BL7H1I1Ng=";
2016-07-06 01:33:51 +00:00
};
2017-11-27 16:13:56 +00:00
outputs = [ "out" "lib" "dev" ];
nativeBuildInputs = [ cmake qttools ];
buildInputs = [ luajit SDL2
2016-07-06 01:33:51 +00:00
SDL2_image SDL2_ttf physfs
2018-09-05 02:03:56 +00:00
openal libmodplug libvorbis
qtbase glm ];
2016-07-06 01:33:51 +00:00
preFixup = ''
mkdir $lib/
mv $out/lib $lib
'';
meta = with lib; {
2016-07-06 01:33:51 +00:00
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";
2016-07-06 01:33:51 +00:00
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
}