nixpkgs/pkgs/tools/security/tboot/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

36 lines
1.1 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, openssl, perl, trousers, zlib }:
stdenv.mkDerivation rec {
pname = "tboot";
2022-03-26 00:01:40 +00:00
version = "1.10.5";
src = fetchurl {
url = "mirror://sourceforge/tboot/${pname}-${version}.tar.gz";
2022-03-26 00:01:40 +00:00
sha256 = "sha256-O0vhbAPLwlBx7x1L2gtP1VDu2G2sbH9+/fAkI8VRs5M=";
};
buildInputs = [ openssl trousers zlib ];
2017-08-13 12:31:23 +01:00
enableParallelBuilding = true;
preConfigure = ''
substituteInPlace tboot/Makefile --replace /usr/bin/perl ${perl}/bin/perl
2019-11-03 13:11:40 +00:00
for a in lcptools-v2 tb_polgen utils; do
substituteInPlace "$a/Makefile" --replace /usr/sbin /sbin
done
substituteInPlace docs/Makefile --replace /usr/share /share
'';
2019-11-05 01:10:31 +00:00
installFlags = [ "DESTDIR=$(out)" ];
meta = with lib; {
description = "A 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 = licenses.bsd3;
2017-08-13 12:31:23 +01:00
maintainers = with maintainers; [ ak ];
platforms = [ "x86_64-linux" "i686-linux" ];
};
}