summary refs log tree commit diff
diff options
context:
space:
mode:
authorJoachim Fasting <joachifm@fastmail.fm>2015-07-22 06:26:08 +0200
committerJoachim Fasting <joachifm@fastmail.fm>2015-07-22 10:00:20 +0200
commitfe7114035fc4c818ed363041394439e5473ca7e5 (patch)
tree3d680e9f25e89038c25a9a21e25a6f44fa277ca0
parent551a26dad196ae1370b5ea84783784c9f0fce62f (diff)
downloadnixlib-fe7114035fc4c818ed363041394439e5473ca7e5.tar
nixlib-fe7114035fc4c818ed363041394439e5473ca7e5.tar.gz
nixlib-fe7114035fc4c818ed363041394439e5473ca7e5.tar.bz2
nixlib-fe7114035fc4c818ed363041394439e5473ca7e5.tar.lz
nixlib-fe7114035fc4c818ed363041394439e5473ca7e5.tar.xz
nixlib-fe7114035fc4c818ed363041394439e5473ca7e5.tar.zst
nixlib-fe7114035fc4c818ed363041394439e5473ca7e5.zip
coreclr: disable i686 build
The hydra build [1] fails with

  error: Detected non x86_64 target processor.  Not supported!

[1]: https://hydra.nixos.org/build/23871656
-rw-r--r--pkgs/development/compilers/coreclr/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/compilers/coreclr/default.nix b/pkgs/development/compilers/coreclr/default.nix
index 094df5b5b631..629d981893d9 100644
--- a/pkgs/development/compilers/coreclr/default.nix
+++ b/pkgs/development/compilers/coreclr/default.nix
@@ -60,7 +60,7 @@ stdenv.mkDerivation rec {
   meta = {
     homepage = http://dotnet.github.io/core/;
     description = ".NET is a general purpose development platform.";
-    platforms = with stdenv.lib.platforms; linux;
+    platforms = [ "x86_64-linux" ];
     maintainers = with stdenv.lib.maintainers; [ obadz ];
     license = stdenv.lib.licenses.mit;
   };