nixpkgs/pkgs/games/gltron/default.nix

30 lines
907 B
Nix
Raw Normal View History

2021-01-15 04:31:39 +00:00
{lib, stdenv, fetchurl, SDL, libGLU, libGL, zlib, libpng, libvorbis, libmikmod, SDL_sound } :
stdenv.mkDerivation rec {
name = "gltron-0.70";
src = fetchurl {
url = "mirror://sourceforge/gltron/${name}-source.tar.gz";
sha256 = "e0c8ebb41a18a1f8d7302a9c2cb466f5b1dd63e9a9966c769075e6b6bdad8bb0";
};
patches = [ ./gentoo-prototypes.patch ];
postPatch = ''
2018-12-01 18:49:28 +00:00
# Fix https://sourceforge.net/p/gltron/bugs/15
sed -i /__USE_MISC/d lua/src/lib/liolib.c
'';
# The build fails, unless we disable the default -Wall -Werror
2018-07-25 21:44:21 +00:00
configureFlags = [ "--disable-warn" ];
2019-11-10 16:44:34 +00:00
buildInputs = [ SDL libGLU libGL zlib libpng libvorbis libmikmod SDL_sound ];
meta = {
homepage = "http://www.gltron.org/";
description = "Game based on the movie Tron";
2021-01-15 04:31:39 +00:00
license = lib.licenses.gpl2Plus;
maintainers = with lib.maintainers; [viric];
platforms = with lib.platforms; linux;
};
}