brogue: disable fortify hardening to fix runtime error

See #18888.
This commit is contained in:
Franz Pletz 2016-09-24 02:09:26 +02:00
parent 67bec77c68
commit 89a5f7de83
No known key found for this signature in database
GPG key ID: 846FDED7792617B4

View file

@ -26,7 +26,7 @@ stdenv.mkDerivation rec {
'';
# fix crash; shouldnt be a security risk because its an offline game
hardeningDisable = [ "stackprotector" ];
hardeningDisable = [ "stackprotector" "fortify" ];
meta = with stdenv.lib; {
description = "A roguelike game";