fondu: disable fortify hardening

This commit is contained in:
Robin Gloster 2016-08-04 07:30:30 +00:00
parent a748f315db
commit a2ce15318b

View File

@ -3,12 +3,16 @@
stdenv.mkDerivation rec {
version = "060102";
name = "fondu-${version}";
src = fetchurl {
url = "http://fondu.sourceforge.net/fondu_src-${version}.tgz";
sha256 = "152prqad9jszjmm4wwqrq83zk13ypsz09n02nrk1gg0fcxfm7fr2";
};
makeFlags = "DESTDIR=$(out)";
hardeningDisable = [ "fortify" ];
meta = {
platforms = stdenv.lib.platforms.unix;
};