tboot: disable stackprotector/pic hardening

+4
+4
pkgs/tools/security/tboot/default.nix
··· 12 12 13 13 patches = [ ./tboot-add-well-known-secret-option-to-lcp_writepol.patch ]; 14 14 15 + hardening_pic = false; 16 + hardening_stackprotector = false; 17 + 15 18 configurePhase = '' 16 19 for a in lcptools utils tb_polgen; do 17 20 substituteInPlace $a/Makefile --replace /usr/sbin /sbin 18 21 done 19 22 substituteInPlace docs/Makefile --replace /usr/share /share 20 23 ''; 24 + 21 25 installFlags = "DESTDIR=$(out)"; 22 26 23 27 meta = with stdenv.lib; {