i2pd: disable AESNI by default since we want portable executables

This commit is contained in:
Edward Tjörnhammar 2015-11-20 18:58:46 +01:00
parent 61f310cd4d
commit 071bcf356e

View File

@ -14,6 +14,7 @@ stdenv.mkDerivation rec {
}; };
buildInputs = [ boost zlib openssl ]; buildInputs = [ boost zlib openssl ];
makeFlags = "USE_AESNI=no";
installPhase = '' installPhase = ''
install -D i2p $out/bin/i2p install -D i2p $out/bin/i2p
''; '';