From fe7114035fc4c818ed363041394439e5473ca7e5 Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Wed, 22 Jul 2015 06:26:08 +0200 Subject: [PATCH] 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 --- pkgs/development/compilers/coreclr/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; };