summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheodore Ni <3806110+tjni@users.noreply.github.com>2022-12-05 23:29:03 -0800
committerTheodore Ni <3806110+tjni@users.noreply.github.com>2022-12-05 23:29:03 -0800
commita899f74775f43761f66667cd6658ec150e383ab5 (patch)
treed9341cf7dfd2e35ac8e67517beef831ba73eb75a
parentMerge pull request #199371 from figsoda/fetchCrate (diff)
downloadnixpkgs-a899f74775f43761f66667cd6658ec150e383ab5.tar.gz
petsc: reenable stackprotector on aarch64-darwin
-rw-r--r--pkgs/development/libraries/science/math/petsc/default.nix5
1 files changed, 0 insertions, 5 deletions
diff --git a/pkgs/development/libraries/science/math/petsc/default.nix b/pkgs/development/libraries/science/math/petsc/default.nix
index e847d1decd24..ae95fefe0e63 100644
--- a/pkgs/development/libraries/science/math/petsc/default.nix
+++ b/pkgs/development/libraries/science/math/petsc/default.nix
@@ -67,11 +67,6 @@ stdenv.mkDerivation rec {
configureScript = "python ./configure";
- # disable stackprotector on aarch64-darwin for now
- # https://github.com/NixOS/nixpkgs/issues/158730
- # see https://github.com/NixOS/nixpkgs/issues/127608 for a similar issue
- hardeningDisable = lib.optionals (stdenv.isAarch64 && stdenv.isDarwin) [ "stackprotector" ];
-
enableParallelBuilding = true;
doCheck = stdenv.hostPlatform == stdenv.buildPlatform;