58 lines
1.4 KiB
Nix
58 lines
1.4 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
openssl,
|
|
perl,
|
|
trousers,
|
|
zlib,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "tboot";
|
|
version = "1.11.9";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/tboot/${pname}-${version}.tar.gz";
|
|
hash = "sha256-uCbJatmt1qYLuWdCATeCS4mNrpJ+UUBJa1rDgjE37Z0=";
|
|
};
|
|
|
|
buildInputs = [
|
|
openssl
|
|
trousers
|
|
zlib
|
|
];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
preConfigure = ''
|
|
substituteInPlace tboot/Makefile --replace /usr/bin/perl ${perl}/bin/perl
|
|
|
|
for a in lcptools-v2 tb_polgen utils; do
|
|
substituteInPlace "$a/Makefile" --replace /usr/sbin /sbin
|
|
done
|
|
substituteInPlace docs/Makefile --replace /usr/share /share
|
|
'';
|
|
|
|
postPatch = ''
|
|
# compute the allocated size from the pointed type, to avoid the warning
|
|
substituteInPlace lcptools-v2/pconf_legacy.c \
|
|
--replace-fail "digest = malloc(SHA1_DIGEST_SIZE);" \
|
|
"digest = malloc(sizeof *digest);"
|
|
'';
|
|
|
|
installFlags = [ "DESTDIR=$(out)" ];
|
|
|
|
meta = {
|
|
description = "Pre-kernel/VMM module that uses Intel(R) TXT to perform a measured and verified launch of an OS kernel/VMM";
|
|
homepage = "https://sourceforge.net/projects/tboot/";
|
|
changelog = "https://sourceforge.net/p/tboot/code/ci/v${version}/tree/CHANGELOG";
|
|
license = lib.licenses.bsd3;
|
|
maintainers = with lib.maintainers; [ ak ];
|
|
platforms = [
|
|
"x86_64-linux"
|
|
"i686-linux"
|
|
];
|
|
};
|
|
}
|