about summary refs log tree commit diff
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
parent232f64328efab73ddf605baa15a0b63b66e760e0 (diff)
bitsnbots: drop
- upstream is dead
- crashes on startup
-rw-r--r--pkgs/games/bitsnbots/default.nix37
-rw-r--r--pkgs/top-level/aliases.nix1
-rw-r--r--pkgs/top-level/all-packages.nix4
3 files changed, 1 insertions, 41 deletions
diff --git a/pkgs/games/bitsnbots/default.nix b/pkgs/games/bitsnbots/default.nix
deleted file mode 100644
index e5e718e3ca5b1..0000000000000
--- 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;
-  };
-}
diff --git a/pkgs/top-level/aliases.nix b/pkgs/top-level/aliases.nix
index 565f760b88561..747cc81632dfd 100644
--- a/pkgs/top-level/aliases.nix
+++ b/pkgs/top-level/aliases.nix
@@ -78,6 +78,7 @@ mapAliases ({
   bootchart = throw "bootchart has been removed from nixpkgs, as it is without a maintainer"; # added 2019-12-10
   bomi = throw "bomi has been removed from nixpkgs since it was broken and abandoned upstream"; # added 2020-12-10
   btrfsProgs = btrfs-progs; # added 2016-01-03
+  bitsnbots = throw "bitsnbots has been removed because it was broken and upstream missing"; # added 2021-08-22
   bittorrentSync = throw "bittorrentSync has been deprecated by resilio-sync."; # added 2019-06-03
   bittorrentSync14 = throw "bittorrentSync14 has been deprecated by resilio-sync."; # added 2019-06-03
   bittorrentSync20 = throw "bittorrentSync20 has been deprecated by resilio-sync."; # added 2019-06-03
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index 33a51b7f67a04..a6665e2f857fa 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -29107,10 +29107,6 @@ with pkgs;
 
   beret = callPackage ../games/beret { };
 
-  bitsnbots = callPackage ../games/bitsnbots {
-    lua = lua5;
-  };
-
   black-hole-solver = callPackage ../games/black-hole-solver {
     inherit (perlPackages) PathTiny;
   };