radare: turn off format hardening

This commit is contained in:
Robin Gloster 2016-02-12 15:10:11 +00:00
parent 0a3b3559b1
commit e558a7f252

View File

@ -8,8 +8,8 @@ assert useX11 -> (gtk != null && vte != null && gtkdialog != null);
assert rubyBindings -> ruby != null; assert rubyBindings -> ruby != null;
assert pythonBindings -> python != null; assert pythonBindings -> python != null;
let let
optional = stdenv.lib.optional; inherit (stdenv.lib) optional;
in in
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "radare-1.5.2"; name = "radare-1.5.2";
@ -19,6 +19,7 @@ stdenv.mkDerivation rec {
sha256 = "1qdrmcnzfvfvqb27c7pknwm8jl2hqa6c4l66wzyddwlb8yjm46hd"; sha256 = "1qdrmcnzfvfvqb27c7pknwm8jl2hqa6c4l66wzyddwlb8yjm46hd";
}; };
hardening_format = false;
buildInputs = [pkgconfig readline libusb perl] buildInputs = [pkgconfig readline libusb perl]
++ optional useX11 [gtkdialog vte gtk] ++ optional useX11 [gtkdialog vte gtk]