2014-08-12 18:38:15 +01:00
|
|
|
{ stdenv, fetchurl, trousers, openssl, zlib }:
|
2013-08-14 07:16:52 +01:00
|
|
|
|
2014-08-12 18:38:15 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2017-08-13 12:31:23 +01:00
|
|
|
name = "tboot-${version}";
|
|
|
|
version = "1.9.6";
|
2013-08-14 07:16:52 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2014-08-12 18:38:15 +01:00
|
|
|
url = "mirror://sourceforge/tboot/${name}.tar.gz";
|
2017-08-13 12:31:23 +01:00
|
|
|
sha256 = "0f9afz260xhycpd0x5zz6jn8ha14i8j98rck0fhb55l1rbbfwm8v";
|
2013-08-14 07:16:52 +01:00
|
|
|
};
|
|
|
|
|
2017-08-13 12:31:23 +01:00
|
|
|
patches = [ ./tboot-add-well-known-secret-option-to-lcp_writepol.patch ];
|
|
|
|
|
2013-08-14 07:16:52 +01:00
|
|
|
buildInputs = [ trousers openssl zlib ];
|
|
|
|
|
2017-08-13 12:31:23 +01:00
|
|
|
enableParallelBuilding = true;
|
2013-08-14 07:16:52 +01:00
|
|
|
|
2016-02-26 17:38:15 +00:00
|
|
|
hardeningDisable = [ "pic" "stackprotector" ];
|
2016-02-24 17:01:37 +00:00
|
|
|
|
2013-08-14 07:16:52 +01:00
|
|
|
configurePhase = ''
|
|
|
|
for a in lcptools utils tb_polgen; do
|
|
|
|
substituteInPlace $a/Makefile --replace /usr/sbin /sbin
|
|
|
|
done
|
|
|
|
substituteInPlace docs/Makefile --replace /usr/share /share
|
|
|
|
'';
|
2016-02-24 17:01:37 +00:00
|
|
|
|
2013-08-14 07:16:52 +01:00
|
|
|
installFlags = "DESTDIR=$(out)";
|
2014-04-22 13:04:36 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2014-08-24 15:21:08 +01:00
|
|
|
description = "A pre-kernel/VMM module that uses Intel(R) TXT to perform a measured and verified launch of an OS kernel/VMM";
|
2018-01-05 19:42:46 +00:00
|
|
|
homepage = https://sourceforge.net/projects/tboot/;
|
2014-04-22 13:04:36 +01:00
|
|
|
license = licenses.bsd3;
|
2017-08-13 12:31:23 +01:00
|
|
|
maintainers = with maintainers; [ ak ];
|
2017-12-06 00:55:19 +00:00
|
|
|
platforms = [ "x86_64-linux" "i686-linux" ];
|
2014-04-22 13:04:36 +01:00
|
|
|
};
|
2013-08-14 07:16:52 +01:00
|
|
|
}
|