summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorAlexander Kjeldaas <ak@formalprivacy.com>2014-05-26 08:26:50 +0200
committerVladimír Čunát <vcunat@gmail.com>2014-08-14 14:23:44 +0200
commit29a79bb0d50231a2f64f9addb72e66f0aceca39c (patch)
tree182e26625493c6d9d1452b2e88eb9ecc3c5937f5 /pkgs
parent29f7d458fd24dda1451eb1102c6bf34719b60835 (diff)
downloadnixlib-29a79bb0d50231a2f64f9addb72e66f0aceca39c.tar
nixlib-29a79bb0d50231a2f64f9addb72e66f0aceca39c.tar.gz
nixlib-29a79bb0d50231a2f64f9addb72e66f0aceca39c.tar.bz2
nixlib-29a79bb0d50231a2f64f9addb72e66f0aceca39c.tar.lz
nixlib-29a79bb0d50231a2f64f9addb72e66f0aceca39c.tar.xz
nixlib-29a79bb0d50231a2f64f9addb72e66f0aceca39c.tar.zst
nixlib-29a79bb0d50231a2f64f9addb72e66f0aceca39c.zip
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.
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/tools/security/tboot/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/tools/security/tboot/default.nix b/pkgs/tools/security/tboot/default.nix
index 7c67ebb16b11..1c9967edc477 100644
--- a/pkgs/tools/security/tboot/default.nix
+++ b/pkgs/tools/security/tboot/default.nix
@@ -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;
   };
 }