solarus: init at 1.4.5
This commit is contained in:
parent
6d16ececdd
commit
09f366a360
|
@ -264,6 +264,7 @@
|
||||||
muflax = "Stefan Dorn <mail@muflax.com>";
|
muflax = "Stefan Dorn <mail@muflax.com>";
|
||||||
myrl = "Myrl Hex <myrl.0xf@gmail.com>";
|
myrl = "Myrl Hex <myrl.0xf@gmail.com>";
|
||||||
nathan-gs = "Nathan Bijnens <nathan@nathan.gs>";
|
nathan-gs = "Nathan Bijnens <nathan@nathan.gs>";
|
||||||
|
Nate-Devv = "Nathan Moore <natedevv@gmail.com>";
|
||||||
nckx = "Tobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>";
|
nckx = "Tobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>";
|
||||||
nequissimus = "Tim Steinbach <tim@nequissimus.com>";
|
nequissimus = "Tim Steinbach <tim@nequissimus.com>";
|
||||||
nfjinjing = "Jinjing Wang <nfjinjing@gmail.com>";
|
nfjinjing = "Jinjing Wang <nfjinjing@gmail.com>";
|
||||||
|
|
|
@ -0,0 +1,32 @@
|
||||||
|
{ stdenv, fetchFromGitHub, cmake, luajit,
|
||||||
|
SDL2, SDL2_image, SDL2_ttf, physfs,
|
||||||
|
openal, libmodplug, libvorbis}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "solarus-${version}";
|
||||||
|
version = "1.4.5";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "christopho";
|
||||||
|
repo = "solarus";
|
||||||
|
rev = "d9fdb9fdb4e1b9fc384730a9279d134ae9f2c70e";
|
||||||
|
sha256 = "0xjx789d6crm322wmkqyq9r288vddsha59yavhy78c4r01gs1p5v";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ cmake luajit SDL2
|
||||||
|
SDL2_image SDL2_ttf physfs
|
||||||
|
openal libmodplug libvorbis ];
|
||||||
|
|
||||||
|
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;
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
|
@ -15581,6 +15581,8 @@ in
|
||||||
soi = callPackage ../games/soi {
|
soi = callPackage ../games/soi {
|
||||||
lua = lua5_1;
|
lua = lua5_1;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
solarus = callPackage ../games/solarus { };
|
||||||
|
|
||||||
# You still can override by passing more arguments.
|
# You still can override by passing more arguments.
|
||||||
space-orbit = callPackage ../games/space-orbit { };
|
space-orbit = callPackage ../games/space-orbit { };
|
||||||
|
|
Loading…
Reference in New Issue