mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-27 22:03:54 +03:00
lua.i686-linux: disable stackprotector hardening
This commit is contained in:
parent
4d4610ac0f
commit
f791c1074d
@ -12,6 +12,8 @@ stdenv.mkDerivation {
|
|||||||
buildFlags = "all so sobin";
|
buildFlags = "all so sobin";
|
||||||
installFlags = "INSTALL_ROOT=$$out";
|
installFlags = "INSTALL_ROOT=$$out";
|
||||||
|
|
||||||
|
hardeningDisable = stdenv.lib.optional stdenv.isi686 "stackprotector";
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
homepage = "http://www.lua.org";
|
homepage = "http://www.lua.org";
|
||||||
description = "Powerful, fast, lightweight, embeddable scripting language";
|
description = "Powerful, fast, lightweight, embeddable scripting language";
|
||||||
|
@ -10,6 +10,8 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
buildInputs = [ lua5 openssl ];
|
buildInputs = [ lua5 openssl ];
|
||||||
|
|
||||||
|
hardeningDisable = stdenv.lib.optional stdenv.isi686 "stackprotector";
|
||||||
|
|
||||||
preBuild = ''
|
preBuild = ''
|
||||||
makeFlagsArray=(
|
makeFlagsArray=(
|
||||||
linux
|
linux
|
||||||
|
Loading…
Reference in New Issue
Block a user