nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

Fix gltron. Sinterklaas present for iElectric.

(cherry picked from commit 013705113bb95f5e43b779c94c231f4f0f3b89fc)

+5 -1
+5 -1
pkgs/games/gltron/default.nix
··· 9 9 10 10 patches = [ ./gentoo-prototypes.patch ]; 11 11 12 + postPatch = '' 13 + # Fix http://sourceforge.net/p/gltron/bugs/15 14 + sed -i /__USE_MISC/d lua/src/lib/liolib.c 15 + ''; 16 + 12 17 # The build fails, unless we disable the default -Wall -Werror 13 18 configureFlags = "--disable-warn"; 14 19 ··· 25 20 license = stdenv.lib.licenses.gpl2Plus; 26 21 maintainers = with stdenv.lib.maintainers; [viric]; 27 22 platforms = with stdenv.lib.platforms; linux; 28 - broken = true; # see http://sourceforge.net/p/gltron/bugs/15 29 23 }; 30 24 }