nixpkgs/pkgs/games/kobodeluxe/default.nix
Tuomas Tynkkynen 21f17d69f6 treewide: Add lots of meta.platforms
Build-tested on x86_64 Linux & Mac.
2016-08-02 21:42:43 +03:00

25 lines
669 B
Nix

{stdenv, fetchurl, SDL, SDL_image} :
stdenv.mkDerivation {
name = "kobodeluxe-0.5.1";
src = fetchurl {
url = http://olofson.net/kobodl/download/KoboDeluxe-0.5.1.tar.bz2;
sha256 = "0f7b910a399d985437564af8c5d81d6dcf22b96b26b01488d72baa6a6fdb5c2c";
};
buildInputs = [ SDL SDL_image];
prePatch = ''
sed -e 's/char \*tok/const char \*tok/' -i graphics/window.cpp
'';
patches = [ ./glibc29.patch ];
meta = {
homepage = http://olofson.net/kobodl/;
description = "Enhanced version of Akira Higuchi's game XKobo for Un*x systems with X11";
license = stdenv.lib.licenses.gpl2Plus;
platforms = stdenv.lib.platforms.linux;
};
}