2018-02-24 13:12:44 +00:00
|
|
|
{stdenv, fetchurl, SDL, SDL_image, libGLU_combined} :
|
2009-04-14 22:25:03 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "kobodeluxe-0.5.1";
|
|
|
|
src = fetchurl {
|
|
|
|
url = http://olofson.net/kobodl/download/KoboDeluxe-0.5.1.tar.bz2;
|
|
|
|
sha256 = "0f7b910a399d985437564af8c5d81d6dcf22b96b26b01488d72baa6a6fdb5c2c";
|
|
|
|
};
|
|
|
|
|
2018-02-24 13:12:44 +00:00
|
|
|
buildInputs = [ SDL SDL_image libGLU_combined ];
|
2009-04-14 22:25:03 +00:00
|
|
|
|
2012-07-12 21:42:20 +00:00
|
|
|
prePatch = ''
|
|
|
|
sed -e 's/char \*tok/const char \*tok/' -i graphics/window.cpp
|
|
|
|
'';
|
|
|
|
|
|
|
|
patches = [ ./glibc29.patch ];
|
|
|
|
|
2009-04-14 22:25:03 +00:00
|
|
|
meta = {
|
|
|
|
homepage = http://olofson.net/kobodl/;
|
|
|
|
description = "Enhanced version of Akira Higuchi's game XKobo for Un*x systems with X11";
|
2014-06-19 04:19:00 +00:00
|
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
2016-08-02 17:50:55 +00:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2009-04-14 22:25:03 +00:00
|
|
|
};
|
|
|
|
}
|