mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-22 14:45:27 +00:00
liquidwar5: disable format hardening
This commit is contained in:
parent
f86c5bc6fa
commit
69b71d3eac
|
@ -7,18 +7,16 @@ stdenv.mkDerivation rec {
|
||||||
sha256 = "18wkbfzp07yckg05b5gjy67rw06z9lxp0hzg0zwj7rz8i12jxi9j";
|
sha256 = "18wkbfzp07yckg05b5gjy67rw06z9lxp0hzg0zwj7rz8i12jxi9j";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [ allegro ];
|
||||||
allegro
|
|
||||||
];
|
|
||||||
|
|
||||||
configureFlags =
|
configureFlags = stdenv.lib.optional stdenv.isx86_64 "--disable-asm";
|
||||||
(stdenv.lib.optional stdenv.isx86_64 "--disable-asm")
|
|
||||||
;
|
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
hardeningDisable = [ "format" ];
|
||||||
description = ''The classic version of a quick tactics game LiquidWar'';
|
|
||||||
maintainers = [ maintainers.raskin ];
|
meta = with stdenv.lib; {
|
||||||
license = licenses.gpl2Plus;
|
description = ''The classic version of a quick tactics game LiquidWar'';
|
||||||
platforms = platforms.linux;
|
maintainers = [ maintainers.raskin ];
|
||||||
};
|
license = licenses.gpl2Plus;
|
||||||
|
platforms = platforms.linux;
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue