python312Packages.lottie: 0.7.0 -> 0.7.1 (#361686)
[NixPkgs.git] / pkgs / by-name / gl / gltron / package.nix
blob819914dec8b504cf89bab5ab7d63838eb12aacde
1 {lib, stdenv, fetchurl, SDL, libGLU, libGL, zlib, libpng, libvorbis, libmikmod, SDL_sound } :
3 stdenv.mkDerivation rec {
4   pname = "gltron";
5   version = "0.70";
6   src = fetchurl {
7     url = "mirror://sourceforge/gltron/gltron-${version}-source.tar.gz";
8     sha256 = "e0c8ebb41a18a1f8d7302a9c2cb466f5b1dd63e9a9966c769075e6b6bdad8bb0";
9   };
11   patches = [ ./gentoo-prototypes.patch ];
13   postPatch = ''
14      # Fix https://sourceforge.net/p/gltron/bugs/15
15      sed -i /__USE_MISC/d lua/src/lib/liolib.c
16   '';
18   # The build fails, unless we disable the default -Wall -Werror
19   configureFlags = [ "--disable-warn" ];
21   buildInputs = [ SDL libGLU libGL zlib libpng libvorbis libmikmod SDL_sound ];
23   meta = {
24     homepage = "http://www.gltron.org/";
25     description = "Game based on the movie Tron";
26     mainProgram = "gltron";
27     license = lib.licenses.gpl2Plus;
28     maintainers = [ ];
29     platforms = with lib.platforms; linux;
30   };