forked from mirrors/nixpkgs
brogue: fix crash by stackprotector hardening (#18888)
This commit is contained in:
parent
06395c6baf
commit
67bec77c68
|
@ -25,6 +25,9 @@ stdenv.mkDerivation rec {
|
|||
cp -r bin/fonts $out/share/brogue/
|
||||
'';
|
||||
|
||||
# fix crash; shouldn’t be a security risk because it’s an offline game
|
||||
hardeningDisable = [ "stackprotector" ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "A roguelike game";
|
||||
homepage = https://sites.google.com/site/broguegame/;
|
||||
|
|
Loading…
Reference in a new issue