nextcloud-client: disable fortify3 hardening flag

This commit is contained in:
Robert Scott 2023-07-09 21:06:55 +01:00
parent e37dc85606
commit 62a35867c5

View File

@ -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
'';