summary refs log tree commit diff
path: root/pkgs/tools/security/tboot
diff options
context:
space:
mode:
authorTuomas Tynkkynen <tuomas.tynkkynen@iki.fi>2017-12-06 02:55:19 +0200
committerTuomas Tynkkynen <tuomas.tynkkynen@iki.fi>2017-12-06 02:55:19 +0200
commit65ace59fa81e3c59b3b219414eb0e4b9ae29ee9f (patch)
tree8fb44b0d894261ea18503a166b1cc22d0ee0425c /pkgs/tools/security/tboot
parent62540120539e5f0ef58de68429578a28fbccdfd8 (diff)
downloadnixpkgs-65ace59fa81e3c59b3b219414eb0e4b9ae29ee9f.tar
nixpkgs-65ace59fa81e3c59b3b219414eb0e4b9ae29ee9f.tar.gz
nixpkgs-65ace59fa81e3c59b3b219414eb0e4b9ae29ee9f.tar.bz2
nixpkgs-65ace59fa81e3c59b3b219414eb0e4b9ae29ee9f.tar.lz
nixpkgs-65ace59fa81e3c59b3b219414eb0e4b9ae29ee9f.tar.xz
nixpkgs-65ace59fa81e3c59b3b219414eb0e4b9ae29ee9f.tar.zst
nixpkgs-65ace59fa81e3c59b3b219414eb0e4b9ae29ee9f.zip
tboot: Only works on x86
https://hydra.nixos.org/build/65116569

It's x86-related booting stuff.
Diffstat (limited to 'pkgs/tools/security/tboot')
-rw-r--r--pkgs/tools/security/tboot/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/tools/security/tboot/default.nix b/pkgs/tools/security/tboot/default.nix
index 8530aab4e70..534ff3fd0ff 100644
--- a/pkgs/tools/security/tboot/default.nix
+++ b/pkgs/tools/security/tboot/default.nix
@@ -31,6 +31,6 @@ stdenv.mkDerivation rec {
     homepage    = http://sourceforge.net/projects/tboot/;
     license     = licenses.bsd3;
     maintainers = with maintainers; [ ak ];
-    platforms   = platforms.linux;
+    platforms   = [ "x86_64-linux" "i686-linux" ];
   };
 }