From 67bec77c68259166ba9e23921a0cec3af3ec7298 Mon Sep 17 00:00:00 2001 From: Profpatsch Date: Sat, 24 Sep 2016 02:06:47 +0200 Subject: brogue: fix crash by stackprotector hardening (#18888) --- pkgs/games/brogue/default.nix | 3 +++ 1 file changed, 3 insertions(+) (limited to 'pkgs/games/brogue') diff --git a/pkgs/games/brogue/default.nix b/pkgs/games/brogue/default.nix index 73a70f2f37e..fc135aa4451 100644 --- a/pkgs/games/brogue/default.nix +++ b/pkgs/games/brogue/default.nix @@ -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/; -- cgit 1.4.1