about summary refs log tree commit diff
path: root/pkgs/games
diff options
context:
space:
mode:
authorJörg Thalheim <joerg@thalheim.io>2021-08-22 16:00:06 +0200
committerJörg Thalheim <joerg@thalheim.io>2021-08-22 16:14:35 +0200
commit6d65cb8569122295b0f71af100ef8337d7543e32 (patch)
tree88c08d4b797b99a7805b0d28cab8684d44dcb876 /pkgs/games
parent232f64328efab73ddf605baa15a0b63b66e760e0 (diff)
downloadnixlib-6d65cb8569122295b0f71af100ef8337d7543e32.tar
nixlib-6d65cb8569122295b0f71af100ef8337d7543e32.tar.gz
nixlib-6d65cb8569122295b0f71af100ef8337d7543e32.tar.bz2
nixlib-6d65cb8569122295b0f71af100ef8337d7543e32.tar.lz
nixlib-6d65cb8569122295b0f71af100ef8337d7543e32.tar.xz
nixlib-6d65cb8569122295b0f71af100ef8337d7543e32.tar.zst
nixlib-6d65cb8569122295b0f71af100ef8337d7543e32.zip
bitsnbots: drop
- upstream is dead
- crashes on startup
Diffstat (limited to 'pkgs/games')
-rw-r--r--pkgs/games/bitsnbots/default.nix37
1 files changed, 0 insertions, 37 deletions
diff --git a/pkgs/games/bitsnbots/default.nix b/pkgs/games/bitsnbots/default.nix
deleted file mode 100644
index e5e718e3ca5b..000000000000
--- a/pkgs/games/bitsnbots/default.nix
+++ /dev/null
@@ -1,37 +0,0 @@
-{ lib, stdenv, fetchurl, SDL, lua, libGLU, libGL }:
-
-stdenv.mkDerivation rec {
-  pname = "bitsnbots";
-  version = "20111230";
-
-  src = fetchurl {
-    url = "http://moikmellah.org/downloads/bitsnbots/bitsnbots.source.tgz";
-    sha256 = "1iiclm6bfpp2p6d692hpnw25xyr48ki1xkcxa7fvh5b7m1519gsp";
-  };
-
-  patchPhase = ''
-    sed -i '/^INCLUDE/d' Makefile.linux
-  '';
-
-  makefile = "Makefile.linux";
-
-  NIX_CFLAGS_COMPILE = "-I${SDL.dev}/include/SDL";
-
-  NIX_LDFLAGS = "-lGL";
-
-  installPhase = ''
-    mkdir -p $out/share/${pname}-${version}
-    cp -R bitsnbots resource scripts README $out/share/${pname}-${version}
-    mkdir -p $out/bin
-    ln -s $out/share/${pname}-${version}/bitsnbots $out/bin
-  '';
-
-  buildInputs = [ SDL lua libGLU libGL ];
-
-  meta = {
-    description = "Simple puzzle game with moving robots";
-    homepage = "http://moikmellah.org/blog/?page_id=19";
-    license = lib.licenses.gpl3Plus;
-    platforms = with lib.platforms; linux;
-  };
-}