nixpkgs/pkgs/games/liquidwar/5.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
922 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, allegro }:
2016-08-26 11:40:38 +00:00
stdenv.mkDerivation rec {
2020-11-02 01:58:54 +00:00
version = "5.6.5";
pname = "liquidwar5";
2016-08-26 11:40:38 +00:00
src = fetchurl {
2020-11-02 01:58:54 +00:00
url = "http://www.ufoot.org/download/liquidwar/v5/${version}/liquidwar-${version}.tar.gz";
sha256 = "2tCqhN1BbK0FVCHtm0DfOe+ueNPfdZwFg8ZMVPfy/18=";
2016-08-26 11:40:38 +00:00
};
2016-08-28 14:06:55 +00:00
buildInputs = [ allegro ];
2016-08-26 11:40:38 +00:00
2021-01-15 04:31:39 +00:00
configureFlags = lib.optional stdenv.isx86_64 "--disable-asm";
2016-08-26 11:40:38 +00:00
2016-08-28 14:06:55 +00:00
hardeningDisable = [ "format" ];
env.NIX_CFLAGS_COMPILE = toString [
# Workaround build failure on -fno-common toolchains like upstream
# gcc-10. Otherwise build fails as:
# ld: random.o:(.bss+0x0): multiple definition of `LW_RANDOM_ON'; game.o:(.bss+0x4): first defined here
"-fcommon"
"-lm"
];
2019-09-12 16:28:56 +00:00
meta = with lib; {
description = "The classic version of a quick tactics game LiquidWar";
2016-08-28 14:06:55 +00:00
maintainers = [ maintainers.raskin ];
license = licenses.gpl2Plus;
platforms = platforms.linux;
};
2016-08-26 11:40:38 +00:00
}