3
0
Fork 0
forked from mirrors/nixpkgs
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
909 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, allegro }:
2016-08-26 12:40:38 +01:00
stdenv.mkDerivation rec {
2020-11-02 01:58:54 +00:00
version = "5.6.5";
pname = "liquidwar5";
2016-08-26 12:40:38 +01: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 12:40:38 +01:00
};
2016-08-28 15:06:55 +01:00
buildInputs = [ allegro ];
2016-08-26 12:40:38 +01:00
2021-01-15 04:31:39 +00:00
configureFlags = lib.optional stdenv.isx86_64 "--disable-asm";
2016-08-26 12:40:38 +01:00
2016-08-28 15:06:55 +01:00
hardeningDisable = [ "format" ];
NIX_CFLAGS_COMPILE = [
# 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 17:28:56 +01:00
meta = with lib; {
description = "The classic version of a quick tactics game LiquidWar";
2016-08-28 15:06:55 +01:00
maintainers = [ maintainers.raskin ];
license = licenses.gpl2Plus;
platforms = platforms.linux;
};
2016-08-26 12:40:38 +01:00
}