Unverified Commit c08a4fcc authored by 7c6f434c's avatar 7c6f434c Committed by GitHub
Browse files

warmux: drop (#458181)

parents cb901aa9 872a0e5a
Loading
Loading
Loading
Loading
+0 −83
Original line number Diff line number Diff line
{
  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";
  };
}
+1 −0
Original line number Diff line number Diff line
@@ -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;