about summary refs log tree commit diff
path: root/pkgs/tools/system/btop
diff options
context:
space:
mode:
authorTheodore Ni <3806110+tjni@users.noreply.github.com>2022-09-04 13:21:38 -0700
committerTheodore Ni <3806110+tjni@users.noreply.github.com>2022-09-04 13:21:38 -0700
commitaa9b769451c5b65751b4ae6351030e9b34ebd0af (patch)
treee5336ed998ced6062d7e1e8e9e806f67e95d72c9 /pkgs/tools/system/btop
parent1ed43116cdb9670e9241138996a2c72d357de70e (diff)
btop: reenable stackprotector on aarch64-darwin
The original error that required disabling the stack protector on
aarch64-darwin has been fixed in GCC.
Diffstat (limited to 'pkgs/tools/system/btop')
-rw-r--r--pkgs/tools/system/btop/default.nix2
1 files changed, 0 insertions, 2 deletions
diff --git a/pkgs/tools/system/btop/default.nix b/pkgs/tools/system/btop/default.nix
index 8c2c248fc97ee..092163f68c774 100644
--- a/pkgs/tools/system/btop/default.nix
+++ b/pkgs/tools/system/btop/default.nix
@@ -18,8 +18,6 @@ stdenv.mkDerivation rec {
     sha256 = hash;
   };
 
-  hardeningDisable = lib.optionals (stdenv.isAarch64 && stdenv.isDarwin) [ "stackprotector" ];
-
   ADDFLAGS = with darwin.apple_sdk.frameworks;
     lib.optional stdenv.isDarwin
       "-F${IOKit}/Library/Frameworks/";