13 stdenv.mkDerivation (finalAttrs: {
18 url = "mirror://sourceforge/lgames/lbreakout2-${finalAttrs.version}.tar.gz";
19 hash = "sha256-kQTWF1VT2jRC3GpfxAemaeL1r/Pu3F0wQJ6wA7enjW8=";
24 url = "https://sources.debian.org/data/main/l/lbreakout2/2.6.5-2/debian/patches/sdl_fix_pauses.patch";
25 hash = "sha256-ycsuxfokpOblLky42MwtJowdEp7v5dZRMFIR4id4ZBI=";
30 (lib.enableFeature (!stdenv.hostPlatform.isDarwin) "sdltest")
41 # With fortify it crashes at runtime:
42 # *** buffer overflow detected ***: terminated
43 # Aborted (core dumped)
44 hardeningDisable = [ "fortify" ];
47 homepage = "http://lgames.sourceforge.net/LBreakout2/";
48 description = "Breakout clone from the LGames series";
49 license = with lib.licenses; [ gpl2Plus ];
50 mainProgram = "lbreakout2";
51 maintainers = with lib.maintainers; [
55 platforms = lib.platforms.unix;
56 hydraPlatforms = lib.platforms.linux; # build hangs on both Darwin platforms, needs investigation