olm: fix build by disabling _FORTIFY_SOURCE

This commit is contained in:
Michael Raskin 2018-05-28 11:09:25 +02:00
parent 9f447261c4
commit 8714a30e4c

View file

@ -18,5 +18,8 @@ stdenv.mkDerivation rec {
doCheck = true;
checkTarget = "test";
# requires optimisation but memory operations are compiled with -O0
hardeningDisable = ["fortify"];
installFlags = "PREFIX=$(out)";
}