about summary refs log tree commit diff
path: root/pkgs/applications/networking/nextcloud-client
diff options
context:
space:
mode:
authorRobert Scott <code@humanleg.org.uk>2023-07-09 21:06:55 +0100
committerRobert Scott <code@humanleg.org.uk>2023-07-09 21:06:55 +0100
commit62a35867c509f4412897d897acb78ab0856e0185 (patch)
treed17bd8f54f263ecbff3367273d15614d68f87a26 /pkgs/applications/networking/nextcloud-client
parente37dc856069c85a3f92cd7e14093f8f6e7b742f8 (diff)
nextcloud-client: disable fortify3 hardening flag
Diffstat (limited to 'pkgs/applications/networking/nextcloud-client')
-rw-r--r--pkgs/applications/networking/nextcloud-client/default.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/applications/networking/nextcloud-client/default.nix b/pkgs/applications/networking/nextcloud-client/default.nix
index 322f97f48031f..820bfa8b4efe9 100644
--- a/pkgs/applications/networking/nextcloud-client/default.nix
+++ b/pkgs/applications/networking/nextcloud-client/default.nix
@@ -87,6 +87,9 @@ mkDerivation rec {
     "-DNO_SHIBBOLETH=1" # allows to compile without qtwebkit
   ];
 
+  # causes redefinition of _FORTIFY_SOURCE
+  hardeningDisable = [ "fortify3" ];
+
   postBuild = ''
     make doc-man
   '';