nixpkgs/pkgs/games/liquidwar/5.nix

26 lines
703 B
Nix
Raw Normal View History

2016-08-26 13:40:38 +02:00
{ stdenv, fetchurl, allegro }:
stdenv.mkDerivation rec {
version = "5.6.4";
pname = "liquidwar5";
2016-08-26 13:40:38 +02:00
src = fetchurl {
url = "https://download.savannah.gnu.org/releases/liquidwar/liquidwar-${version}.tar.gz";
2016-08-26 13:40:38 +02:00
sha256 = "18wkbfzp07yckg05b5gjy67rw06z9lxp0hzg0zwj7rz8i12jxi9j";
};
2016-08-28 16:06:55 +02:00
buildInputs = [ allegro ];
2016-08-26 13:40:38 +02:00
2016-08-28 16:06:55 +02:00
configureFlags = stdenv.lib.optional stdenv.isx86_64 "--disable-asm";
2016-08-26 13:40:38 +02:00
2016-08-28 16:06:55 +02:00
hardeningDisable = [ "format" ];
2019-09-12 18:28:56 +02:00
NIX_CFLAGS_COMPILE = [ "-lm" ];
2016-08-28 16:06:55 +02:00
meta = with stdenv.lib; {
description = ''The classic version of a quick tactics game LiquidWar'';
maintainers = [ maintainers.raskin ];
license = licenses.gpl2Plus;
platforms = platforms.linux;
broken = true;
2016-08-28 16:06:55 +02:00
};
2016-08-26 13:40:38 +02:00
}