2021-04-24 03:26:23 +01:00
|
|
|
{ lib, stdenv, fetchurl, openssl, perl, trousers, zlib }:
|
2013-08-14 07:16:52 +01:00
|
|
|
|
2014-08-12 18:38:15 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "tboot";
|
2022-03-26 00:01:40 +00:00
|
|
|
version = "1.10.5";
|
2013-08-14 07:16:52 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "mirror://sourceforge/tboot/${pname}-${version}.tar.gz";
|
2022-03-26 00:01:40 +00:00
|
|
|
sha256 = "sha256-O0vhbAPLwlBx7x1L2gtP1VDu2G2sbH9+/fAkI8VRs5M=";
|
2013-08-14 07:16:52 +01:00
|
|
|
};
|
|
|
|
|
2021-04-24 03:26:23 +01:00
|
|
|
buildInputs = [ openssl trousers zlib ];
|
2013-08-14 07:16:52 +01:00
|
|
|
|
2017-08-13 12:31:23 +01:00
|
|
|
enableParallelBuilding = true;
|
2013-08-14 07:16:52 +01:00
|
|
|
|
2021-04-24 03:26:23 +01:00
|
|
|
preConfigure = ''
|
|
|
|
substituteInPlace tboot/Makefile --replace /usr/bin/perl ${perl}/bin/perl
|
2019-11-03 13:11:40 +00:00
|
|
|
|
2021-04-24 03:26:23 +01:00
|
|
|
for a in lcptools-v2 tb_polgen utils; do
|
|
|
|
substituteInPlace "$a/Makefile" --replace /usr/sbin /sbin
|
2013-08-14 07:16:52 +01:00
|
|
|
done
|
|
|
|
substituteInPlace docs/Makefile --replace /usr/share /share
|
|
|
|
'';
|
2016-02-24 17:01:37 +00:00
|
|
|
|
2019-11-05 01:10:31 +00:00
|
|
|
installFlags = [ "DESTDIR=$(out)" ];
|
2014-04-22 13:04:36 +01:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with 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";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://sourceforge.net/projects/tboot/";
|
2021-04-24 03:26:23 +01:00
|
|
|
changelog = "https://sourceforge.net/p/tboot/code/ci/v${version}/tree/CHANGELOG";
|
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
|
|
|
}
|