mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
21f17d69f6
Build-tested on x86_64 Linux & Mac.
30 lines
905 B
Nix
30 lines
905 B
Nix
{ stdenv, fetchurl, SDL_mixer, SDL, autoreconfHook }:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "ri_li-2.0.1";
|
|
|
|
src = fetchurl {
|
|
url = mirror://sourceforge/ri-li/Ri-li-2.0.1.tar.bz2;
|
|
sha256 = "f71ccc20c37c601358d963e087ac0d524de8c68e96df09c3aac1ae65edd38dbd";
|
|
};
|
|
|
|
patches = [ ./moderinze_cpp.patch ];
|
|
|
|
CPPFLAGS = "-I${SDL.dev}/include -I${SDL.dev}/include/SDL -I${SDL_mixer}/include";
|
|
|
|
buildInputs = [ SDL SDL_mixer autoreconfHook ];
|
|
|
|
meta = {
|
|
homepage = http://ri-li.sourceforge.net;
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
|
description = "A children's train game";
|
|
longDescription = ''
|
|
Ri-li is an arcade game licensed under the GPL (General Public License).
|
|
You drive a toy wood engine in many levels and you must collect all the coaches
|
|
to win.
|
|
'';
|
|
maintainers = with stdenv.lib.maintainers; [ jcumming ];
|
|
platforms = with stdenv.lib.platforms; linux;
|
|
};
|
|
}
|