brogue: fix crash by stackprotector hardening (#18888)

This commit is contained in:
Profpatsch 2016-09-24 02:06:47 +02:00 committed by Franz Pletz
parent 06395c6baf
commit 67bec77c68

View file

@ -25,6 +25,9 @@ stdenv.mkDerivation rec {
cp -r bin/fonts $out/share/brogue/
'';
# fix crash; shouldnt be a security risk because its an offline game
hardeningDisable = [ "stackprotector" ];
meta = with stdenv.lib; {
description = "A roguelike game";
homepage = https://sites.google.com/site/broguegame/;