summary refs log tree commit diff
diff options
context:
space:
mode:
authorTheodore Ni <3806110+tjni@users.noreply.github.com>2023-07-12 20:44:59 -0700
committerTheodore Ni <3806110+tjni@users.noreply.github.com>2023-07-12 20:44:59 -0700
commit8f096fa0077faa1252480e813ff824b76815cded (patch)
tree3dc638cdccee4c641dd6b6f94471d0813e3e1265
parentbe0667a60bcf6076d8926186b9cf7b695c3c4269 (diff)
downloadnixpkgs-8f096fa0077faa1252480e813ff824b76815cded.tar
nixpkgs-8f096fa0077faa1252480e813ff824b76815cded.tar.gz
nixpkgs-8f096fa0077faa1252480e813ff824b76815cded.tar.bz2
nixpkgs-8f096fa0077faa1252480e813ff824b76815cded.tar.lz
nixpkgs-8f096fa0077faa1252480e813ff824b76815cded.tar.xz
nixpkgs-8f096fa0077faa1252480e813ff824b76815cded.tar.zst
nixpkgs-8f096fa0077faa1252480e813ff824b76815cded.zip
libxlsxwriter: disable fortify3 hardening flag
-rw-r--r--pkgs/development/libraries/libxlsxwriter/default.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/development/libraries/libxlsxwriter/default.nix b/pkgs/development/libraries/libxlsxwriter/default.nix
index 5d9b50e7251..3716090a30d 100644
--- a/pkgs/development/libraries/libxlsxwriter/default.nix
+++ b/pkgs/development/libraries/libxlsxwriter/default.nix
@@ -31,6 +31,9 @@ stdenv.mkDerivation rec {
     "USE_SYSTEM_MINIZIP=1"
   ];
 
+  # TEST 428/429 worksheet:worksheet_table15 *** buffer overflow detected ***: terminated
+  hardeningDisable = [ "fortify3" ];
+
   doCheck = true;
 
   checkTarget = "test";