summary refs log tree commit diff
diff options
context:
space:
mode:
authorRobert Scott <code@humanleg.org.uk>2023-01-22 21:15:23 +0000
committerRobert Scott <code@humanleg.org.uk>2023-01-24 21:52:13 +0000
commit636029883ad0a8cd89489cd40447e1d4096ab137 (patch)
tree3aa661afb2956c7fe36734cc102751701683f4e1
parentc09e1fa406f95abff9d6eab173629c61806bb661 (diff)
downloadnixpkgs-636029883ad0a8cd89489cd40447e1d4096ab137.tar
nixpkgs-636029883ad0a8cd89489cd40447e1d4096ab137.tar.gz
nixpkgs-636029883ad0a8cd89489cd40447e1d4096ab137.tar.bz2
nixpkgs-636029883ad0a8cd89489cd40447e1d4096ab137.tar.lz
nixpkgs-636029883ad0a8cd89489cd40447e1d4096ab137.tar.xz
nixpkgs-636029883ad0a8cd89489cd40447e1d4096ab137.tar.zst
nixpkgs-636029883ad0a8cd89489cd40447e1d4096ab137.zip
acl: disable fortify3 hardening
-rw-r--r--pkgs/development/libraries/acl/default.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/development/libraries/acl/default.nix b/pkgs/development/libraries/acl/default.nix
index 1ac577e19cd..5b31ba3a1c8 100644
--- a/pkgs/development/libraries/acl/default.nix
+++ b/pkgs/development/libraries/acl/default.nix
@@ -19,6 +19,9 @@ stdenv.mkDerivation rec {
   nativeBuildInputs = [ gettext ];
   buildInputs = [ attr ];
 
+  # causes failures in coreutils test suite
+  hardeningDisable = [ "fortify3" ];
+
   # Upstream use C++-style comments in C code. Remove them.
   # This comment breaks compilation if too strict gcc flags are used.
   patchPhase = ''