depot/third_party/nixpkgs/pkgs/games/liquidwar/5.nix
Default email ae91cbe6cc Project import generated by Copybara.
GitOrigin-RevId: 536fe36e23ab0fc8b7f35c24603422eee9fc17a2
2021-02-05 18:12:51 +01:00

24 lines
666 B
Nix

{ lib, stdenv, fetchurl, allegro }:
stdenv.mkDerivation rec {
version = "5.6.5";
pname = "liquidwar5";
src = fetchurl {
url = "http://www.ufoot.org/download/liquidwar/v5/${version}/liquidwar-${version}.tar.gz";
sha256 = "2tCqhN1BbK0FVCHtm0DfOe+ueNPfdZwFg8ZMVPfy/18=";
};
buildInputs = [ allegro ];
configureFlags = lib.optional stdenv.isx86_64 "--disable-asm";
hardeningDisable = [ "format" ];
NIX_CFLAGS_COMPILE = [ "-lm" ];
meta = with lib; {
description = "The classic version of a quick tactics game LiquidWar";
maintainers = [ maintainers.raskin ];
license = licenses.gpl2Plus;
platforms = platforms.linux;
};
}