about summary refs log tree commit diff
path: root/pkgs/games
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/games')
-rw-r--r--pkgs/games/lgames/barrage/default.nix33
1 files changed, 0 insertions, 33 deletions
diff --git a/pkgs/games/lgames/barrage/default.nix b/pkgs/games/lgames/barrage/default.nix
deleted file mode 100644
index a606d4f3dfdf..000000000000
--- a/pkgs/games/lgames/barrage/default.nix
+++ /dev/null
@@ -1,33 +0,0 @@
-{ lib
-, SDL
-, SDL_mixer
-, fetchurl
-, stdenv
-}:
-
-stdenv.mkDerivation (finalAttrs: {
-  pname = "barrage";
-  version = "1.0.7";
-
-  src = fetchurl {
-    url = "mirror://sourceforge/lgames/barrage-${finalAttrs.version}.tar.gz";
-    hash = "sha256-cGYrG7A4Ffh51KyR+UpeWu7A40eqxI8g4LefBIs18kg=";
-  };
-
-  buildInputs = [
-    SDL
-    SDL_mixer
-  ];
-
-  hardeningDisable = [ "format" ];
-
-  meta = {
-    homepage = "https://lgames.sourceforge.io/Barrage/";
-    description = "A destructive action game";
-    license = with lib.licenses; [ gpl2Plus ];
-    mainProgram = "barrage";
-    maintainers = with lib.maintainers; [ AndersonTorres ];
-    inherit (SDL.meta) platforms;
-    broken = stdenv.isDarwin;
-  };
-})