about summary refs log tree commit diff
path: root/pkgs/games
diff options
context:
space:
mode:
authorPeder Bergebakken Sundt <pbsds@hotmail.com>2024-05-21 18:17:13 +0200
committerGitHub <noreply@github.com>2024-05-21 18:17:13 +0200
commit3d30d46d885a38deda5353b9cba46fee6792ffa7 (patch)
treed688049081519bf51dd136422afb1b76363b69b0 /pkgs/games
parentd62141d024493276446fed8faf92dcc29d51a049 (diff)
parent195936e03a08384eec83391f73c28af6b3a17805 (diff)
Merge pull request #312500 from atorres1985-contrib/blockattack
blockattack: 2.8.0 -> 2.9.0 
Diffstat (limited to 'pkgs/games')
-rw-r--r--pkgs/games/blockattack/default.nix59
1 files changed, 0 insertions, 59 deletions
diff --git a/pkgs/games/blockattack/default.nix b/pkgs/games/blockattack/default.nix
deleted file mode 100644
index d59b93ae600c6..0000000000000
--- a/pkgs/games/blockattack/default.nix
+++ /dev/null
@@ -1,59 +0,0 @@
-{ lib
-, stdenv
-, fetchFromGitHub
-, SDL2
-, SDL2_image
-, SDL2_mixer
-, SDL2_ttf
-, boost
-, cmake
-, gettext
-, physfs
-, pkg-config
-, zip
-}:
-
-stdenv.mkDerivation rec {
-  pname = "blockattack";
-  version = "2.8.0";
-
-  src = fetchFromGitHub {
-    owner = "blockattack";
-    repo = "blockattack-game";
-    rev = "v${version}";
-    hash = "sha256-2oKesdr2eNZhDlGrFRiH5/8APFkGJfxPCNvzFoIumdQ=";
-  };
-
-  nativeBuildInputs = [
-    cmake
-    pkg-config
-    gettext
-    zip
-  ];
-
-  buildInputs = [
-    SDL2
-    SDL2_image
-    SDL2_mixer
-    SDL2_ttf
-    SDL2_ttf
-    boost
-    physfs
-  ];
-
-  preConfigure = ''
-    patchShebangs packdata.sh source/misc/translation/*.sh
-    chmod +x ./packdata.sh
-    ./packdata.sh
-  '';
-
-  meta = with lib; {
-    homepage = "https://blockattack.net/";
-    description = "An open source clone of Panel de Pon (aka Tetris Attack)";
-    mainProgram = "blockattack";
-    license = licenses.gpl2Plus;
-    maintainers = with maintainers; [ AndersonTorres ];
-    platforms = platforms.unix;
-    broken = stdenv.isDarwin;
-  };
-}