python312Packages.yoda: 2.0.1 -> 2.0.2
[NixPkgs.git] / pkgs / by-name / tb / tboot / package.nix
blobaabbe94bdb0cfedc2a951fe32a15aa963c79e199
1 { lib, stdenv, fetchurl, openssl, perl, trousers, zlib }:
3 stdenv.mkDerivation rec {
4   pname = "tboot";
5   version = "1.11.3";
7   src = fetchurl {
8     url = "mirror://sourceforge/tboot/${pname}-${version}.tar.gz";
9     sha256 = "sha256-TIs/xLxLBkKBN0a0CRB2KMmCq8QgICH1++i485WDU3A=";
10   };
12   buildInputs = [ openssl trousers zlib ];
14   enableParallelBuilding = true;
16   preConfigure = ''
17     substituteInPlace tboot/Makefile --replace /usr/bin/perl ${perl}/bin/perl
19     for a in lcptools-v2 tb_polgen utils; do
20       substituteInPlace "$a/Makefile" --replace /usr/sbin /sbin
21     done
22     substituteInPlace docs/Makefile --replace /usr/share /share
23   '';
25   installFlags = [ "DESTDIR=$(out)" ];
27   meta = with lib; {
28     description = "Pre-kernel/VMM module that uses Intel(R) TXT to perform a measured and verified launch of an OS kernel/VMM";
29     homepage    = "https://sourceforge.net/projects/tboot/";
30     changelog   = "https://sourceforge.net/p/tboot/code/ci/v${version}/tree/CHANGELOG";
31     license     = licenses.bsd3;
32     maintainers = with maintainers; [ ak ];
33     platforms   = [ "x86_64-linux" "i686-linux" ];
34   };