From feff68214eae709a2d34a5e786931982365f0273 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Mon, 29 Aug 2011 20:09:57 +0000 Subject: [PATCH] pkgs/development/compilers/ghc/7.0.4.nix: hard-code list of supported platforms I assumed that Hydra would arrive at that result anyway, but apparently it doesn't: no x86_64-darwin builds have occurred despite the fact that we can bootstrap on that architecture now. svn path=/nixpkgs/trunk/; revision=28882 --- pkgs/development/compilers/ghc/7.0.4.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/compilers/ghc/7.0.4.nix b/pkgs/development/compilers/ghc/7.0.4.nix index 24ed4060d7e..7230b9069e7 100644 --- a/pkgs/development/compilers/ghc/7.0.4.nix +++ b/pkgs/development/compilers/ghc/7.0.4.nix @@ -38,7 +38,7 @@ stdenv.mkDerivation rec { stdenv.lib.maintainers.andres stdenv.lib.maintainers.simons ]; - platforms = ghc.meta.platforms; + platforms = ["x86_64-linux" "i686-linux" "i686-darwin" "x86_64-darwin"]; }; }