summary refs log tree commit diff
path: root/pkgs/development/tools/build-managers
diff options
context:
space:
mode:
authorTuomas Tynkkynen <tuomas@tuxera.com>2016-08-06 16:44:56 +0300
committerTuomas Tynkkynen <tuomas@tuxera.com>2016-08-06 17:06:45 +0300
commitfcc3a1b41d89e0428547707d868f3275a2ccb9ec (patch)
treed866b5ccac143772c366a8ee45e529cc062f3a5e /pkgs/development/tools/build-managers
parent3c513ebc13aed790e69906a19fc41253ca9c73d8 (diff)
downloadnixlib-fcc3a1b41d89e0428547707d868f3275a2ccb9ec.tar
nixlib-fcc3a1b41d89e0428547707d868f3275a2ccb9ec.tar.gz
nixlib-fcc3a1b41d89e0428547707d868f3275a2ccb9ec.tar.bz2
nixlib-fcc3a1b41d89e0428547707d868f3275a2ccb9ec.tar.lz
nixlib-fcc3a1b41d89e0428547707d868f3275a2ccb9ec.tar.xz
nixlib-fcc3a1b41d89e0428547707d868f3275a2ccb9ec.tar.zst
nixlib-fcc3a1b41d89e0428547707d868f3275a2ccb9ec.zip
bazel: Broken on i686
http://hydra.nixos.org/build/38314298
Diffstat (limited to 'pkgs/development/tools/build-managers')
-rw-r--r--pkgs/development/tools/build-managers/bazel/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/tools/build-managers/bazel/default.nix b/pkgs/development/tools/build-managers/bazel/default.nix
index c103d11ac6e3..e49697084e45 100644
--- a/pkgs/development/tools/build-managers/bazel/default.nix
+++ b/pkgs/development/tools/build-managers/bazel/default.nix
@@ -25,6 +25,6 @@ stdenv.mkDerivation rec {
     description = "Build tool that builds code quickly and reliably";
     license = stdenv.lib.licenses.asl20;
     maintainers = [ stdenv.lib.maintainers.philandstuff ];
-    platforms = stdenv.lib.platforms.linux;
+    platforms = [ "x86_64-linux" ];
   };
 }