summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorTuomas Tynkkynen <tuomas.tynkkynen@iki.fi>2017-12-03 19:49:41 +0200
committerTuomas Tynkkynen <tuomas.tynkkynen@iki.fi>2017-12-03 19:51:59 +0200
commitb3e4b224ed8880f4fb314658fb43480a23633b18 (patch)
tree99c83928ecfffca6c2fc7058a58db0fdd2a83761 /pkgs/tools
parent56ecf95468b595add699ae8fe408c798a515d225 (diff)
downloadnixlib-b3e4b224ed8880f4fb314658fb43480a23633b18.tar
nixlib-b3e4b224ed8880f4fb314658fb43480a23633b18.tar.gz
nixlib-b3e4b224ed8880f4fb314658fb43480a23633b18.tar.bz2
nixlib-b3e4b224ed8880f4fb314658fb43480a23633b18.tar.lz
nixlib-b3e4b224ed8880f4fb314658fb43480a23633b18.tar.xz
nixlib-b3e4b224ed8880f4fb314658fb43480a23633b18.tar.zst
nixlib-b3e4b224ed8880f4fb314658fb43480a23633b18.zip
rowhammer-test: Broken on non-x86 (and Darwin)
https://hydra.nixos.org/build/65060720
https://hydra.nixos.org/build/65048404
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/system/rowhammer-test/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/tools/system/rowhammer-test/default.nix b/pkgs/tools/system/rowhammer-test/default.nix
index 226ec4351ea4..5a3ba8b66196 100644
--- a/pkgs/tools/system/rowhammer-test/default.nix
+++ b/pkgs/tools/system/rowhammer-test/default.nix
@@ -24,6 +24,6 @@ stdenv.mkDerivation {
     homepage = https://github.com/google/rowhammer-test;
     license = licenses.asl20;
     maintainers = [ maintainers.viric ];
-    platforms = platforms.unix;
+    platforms = [ "x86_64-linux" "i686-linux" ];
   };
 }