tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
tboot: disable stackprotector/pic hardening
Robin Gloster
10 years ago
c884697a
e7f9e8a2
+4
1 changed file
expand all
collapse all
unified
split
pkgs
tools
security
tboot
default.nix
+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
15
+
hardening_pic = false;
16
16
+
hardening_stackprotector = false;
17
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
24
+
21
25
installFlags = "DESTDIR=$(out)";
22
26
23
27
meta = with stdenv.lib; {