tboot: security update to 1.8.2 (close #3562)

This includes a vulnerability fix for:
TBOOT Argument Measurement Vulnerability for GRUB2 + ELF Kernels

@vcunat: enable i686 again.
This commit is contained in:
Alexander Kjeldaas 2014-05-26 08:26:50 +02:00 committed by Vladimír Čunát
parent 29f7d458fd
commit 29a79bb0d5

View File

@ -1,11 +1,11 @@
{ stdenv, fetchurl, trousers, openssl, zlib }:
stdenv.mkDerivation rec {
name = "tboot-1.8.0";
name = "tboot-1.8.2";
src = fetchurl {
url = "mirror://sourceforge/tboot/${name}.tar.gz";
sha256 = "04z1maryqnr714f3rcynqrpmlx76lxr6bb543xwj5rdl1yvdw2xr";
sha256 = "1l9ccm7ik9fs7kzg1bjc5cjh0pcf4v0k1c84dmyr51r084i7p31m";
};
buildInputs = [ trousers openssl zlib ];
@ -27,7 +27,7 @@ stdenv.mkDerivation rec {
homepage = http://sourceforge.net/projects/tboot/;
license = licenses.bsd3;
maintainers = [ maintainers.ak ];
platforms = [ "x86_64-linux" ]; # doesn't build on i686 and maybe pointless there
platforms = platforms.linux;
};
}