diff --git a/pkgs/by-name/wa/warmux/package.nix b/pkgs/by-name/wa/warmux/package.nix deleted file mode 100644 index c3115ad02d7e..000000000000 --- a/pkgs/by-name/wa/warmux/package.nix +++ /dev/null @@ -1,83 +0,0 @@ -{ - lib, - stdenv, - fetchFromGitHub, - autoconf, - automake, - zlib, - curl, - gnutls, - fribidi, - libpng, - SDL, - SDL_gfx, - SDL_image, - SDL_mixer, - SDL_net, - SDL_ttf, - libunwind, - libX11, - xorgproto, - libxml2, - pkg-config, - gettext, - intltool, - libtool, - perl, -}: - -stdenv.mkDerivation { - pname = "warmux"; - version = "unstable-2017-10-20"; - - src = fetchFromGitHub { - owner = "fluxer"; - repo = "warmux"; - rev = "8f81d4fc309a548ae89a068c2dde27b7e7ef8851"; - sha256 = "1hvzglsmp75xiqqb0k75qjz4jwi8kl3fhn8zfsz53hhhqmbw6wkr"; - }; - - __structuredAttrs = true; - - preConfigure = "patchShebangs autogen.sh && ./autogen.sh"; - configureFlags = [ "CFLAGS=-include ${zlib.dev}/include/zlib.h" ]; - - nativeBuildInputs = [ - autoconf - automake - gettext - intltool - libtool - pkg-config - ]; - buildInputs = [ - zlib - curl - gnutls - fribidi - libpng - SDL - SDL_gfx - SDL_image - SDL_mixer - SDL_net - SDL_ttf - libunwind - libX11 - xorgproto - libxml2 - perl - ]; - enableParallelBuilding = true; - - meta = with lib; { - description = "Ballistics turn-based battle game between teams - unofficial copy"; - maintainers = with maintainers; [ raskin ]; - platforms = platforms.linux; - license = with licenses; [ - gpl2Plus - ufl - ]; - homepage = "https://github.com/fluxer/warmux"; - }; -} diff --git a/pkgs/top-level/aliases.nix b/pkgs/top-level/aliases.nix index 9a0291c32612..d24f366b8cca 100644 --- a/pkgs/top-level/aliases.nix +++ b/pkgs/top-level/aliases.nix @@ -1567,6 +1567,7 @@ mapAliases { waitron = throw "'waitron' has been removed because it has been marked as broken since at least November 2024."; # Added 2025-10-01 wakatime = throw "'wakatime' has been renamed to/replaced by 'wakatime-cli'"; # Converted to throw 2025-10-27 wapp = throw "'wapp' has been renamed to/replaced by 'tclPackages.wapp'"; # Converted to throw 2025-10-27 + warmux = throw "'warmux' has been removed as it is unmaintained and broken"; # Added 2025-11-03 warsow = throw "'warsow' has been removed as it is unmaintained and is broken"; # Added 2025-10-09 warsow-engine = throw "'warsow-engine' has been removed as it is unmaintained and is broken"; # Added 2025-10-09 wasm-bindgen-cli = wasm-bindgen-cli_0_2_104;