souffle: work around hardening bug on linux

This commit is contained in:
Dan Peebles 2016-09-06 23:11:27 +00:00
parent b78e625445
commit 9a05352488

View File

@ -31,6 +31,9 @@ stdenv.mkDerivation rec {
enableParallelBuilding = true;
# See https://github.com/souffle-lang/souffle/issues/176
hardeningDisable = [ "fortify" ];
meta = with stdenv.lib; {
description = "A translator of declarative Datalog programs into the C++ language";
homepage = "http://souffle-lang.github.io/";