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
This commit is contained in:
Peter Simons 2011-08-29 20:09:57 +00:00
parent 8a3f40a088
commit feff68214e

View file

@ -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"];
};
}