tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
solarus: init at 1.4.5
Nathan Moore
9 years ago
09f366a3
6d16ecec
+35
3 changed files
expand all
collapse all
unified
split
lib
maintainers.nix
pkgs
games
solarus
default.nix
top-level
all-packages.nix
+1
lib/maintainers.nix
···
264
264
muflax = "Stefan Dorn <mail@muflax.com>";
265
265
myrl = "Myrl Hex <myrl.0xf@gmail.com>";
266
266
nathan-gs = "Nathan Bijnens <nathan@nathan.gs>";
267
267
+
Nate-Devv = "Nathan Moore <natedevv@gmail.com>";
267
268
nckx = "Tobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>";
268
269
nequissimus = "Tim Steinbach <tim@nequissimus.com>";
269
270
nfjinjing = "Jinjing Wang <nfjinjing@gmail.com>";
+32
pkgs/games/solarus/default.nix
···
1
1
+
{ stdenv, fetchFromGitHub, cmake, luajit,
2
2
+
SDL2, SDL2_image, SDL2_ttf, physfs,
3
3
+
openal, libmodplug, libvorbis}:
4
4
+
5
5
+
stdenv.mkDerivation rec {
6
6
+
name = "solarus-${version}";
7
7
+
version = "1.4.5";
8
8
+
9
9
+
src = fetchFromGitHub {
10
10
+
owner = "christopho";
11
11
+
repo = "solarus";
12
12
+
rev = "d9fdb9fdb4e1b9fc384730a9279d134ae9f2c70e";
13
13
+
sha256 = "0xjx789d6crm322wmkqyq9r288vddsha59yavhy78c4r01gs1p5v";
14
14
+
};
15
15
+
16
16
+
buildInputs = [ cmake luajit SDL2
17
17
+
SDL2_image SDL2_ttf physfs
18
18
+
openal libmodplug libvorbis ];
19
19
+
20
20
+
meta = with stdenv.lib; {
21
21
+
description = "A Zelda-like ARPG game engine";
22
22
+
longDescription = ''
23
23
+
Solarus is a game engine for Zelda-like ARPG games written in lua.
24
24
+
Many full-fledged games have been writen for the engine.
25
25
+
'';
26
26
+
homepage = http://www.solarus-games.org;
27
27
+
license = licenses.gpl3;
28
28
+
maintainers = [ maintainers.Nate-Devv ];
29
29
+
platforms = platforms.linux;
30
30
+
};
31
31
+
32
32
+
}
+2
pkgs/top-level/all-packages.nix
···
15581
15581
soi = callPackage ../games/soi {
15582
15582
lua = lua5_1;
15583
15583
};
15584
15584
+
15585
15585
+
solarus = callPackage ../games/solarus { };
15584
15586
15585
15587
# You still can override by passing more arguments.
15586
15588
space-orbit = callPackage ../games/space-orbit { };