2022-04-21 07:58:51 +01:00
|
|
|
{ lib, stdenv, fetchurl, fetchpatch, SDL_mixer, SDL, autoreconfHook }:
|
2012-10-05 07:32:34 +01:00
|
|
|
|
2021-06-22 22:44:58 +01:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "ri_li";
|
|
|
|
version = "2.0.1";
|
2016-01-17 23:04:40 +00:00
|
|
|
|
2012-10-05 07:32:34 +01:00
|
|
|
src = fetchurl {
|
2021-06-22 22:44:58 +01:00
|
|
|
url = "mirror://sourceforge/ri-li/Ri-li-${version}.tar.bz2";
|
2012-10-05 07:32:34 +01:00
|
|
|
sha256 = "f71ccc20c37c601358d963e087ac0d524de8c68e96df09c3aac1ae65edd38dbd";
|
|
|
|
};
|
|
|
|
|
2022-04-21 07:58:51 +01:00
|
|
|
patches = [
|
|
|
|
./moderinze_cpp.patch
|
|
|
|
|
|
|
|
# Build fix for gcc-11 pending upstream inclusion:
|
|
|
|
# https://sourceforge.net/p/ri-li/bugs/2/
|
|
|
|
(fetchpatch {
|
|
|
|
name = "gcc-11.patch";
|
|
|
|
url = "https://sourceforge.net/p/ri-li/bugs/2/attachment/0001-Fix-build-on-gcc-11.patch";
|
|
|
|
sha256 = "01il9lm3amwp3b435ka9q63p0jwlzajwnbshyazx6n9vcnrr17yw";
|
|
|
|
})
|
|
|
|
];
|
2012-10-05 07:32:34 +01:00
|
|
|
|
2016-01-19 08:55:31 +00:00
|
|
|
CPPFLAGS = "-I${SDL.dev}/include -I${SDL.dev}/include/SDL -I${SDL_mixer}/include";
|
2016-01-17 23:04:40 +00:00
|
|
|
|
2017-09-05 22:26:13 +01:00
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
buildInputs = [ SDL SDL_mixer ];
|
2016-01-17 23:04:40 +00:00
|
|
|
|
2012-10-05 07:32:34 +01:00
|
|
|
meta = {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://ri-li.sourceforge.net";
|
2021-01-15 04:31:39 +00:00
|
|
|
license = lib.licenses.gpl2Plus;
|
2012-10-05 17:36:36 +01:00
|
|
|
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.
|
|
|
|
'';
|
2021-01-15 04:31:39 +00:00
|
|
|
maintainers = with lib.maintainers; [ jcumming ];
|
|
|
|
platforms = with lib.platforms; linux;
|
2012-10-05 07:32:34 +01:00
|
|
|
};
|
|
|
|
}
|