pkgs/lib/platforms.nix: added 'haskellPlatforms', a list of all platforms on which a Haskell compiler is available

svn path=/nixpkgs/trunk/; revision=27791
This commit is contained in:
Peter Simons 2011-07-14 21:54:49 +00:00
parent fa99abdc89
commit aeebf42fe6

View file

@ -13,4 +13,5 @@ rec {
all = linux ++ darwin ++ cygwin ++ freebsd ++ openbsd;
allBut = platform: lists.filter (x: platform != x) all;
mesaPlatforms = linux ++ darwin ++ freebsd;
haskellPlatforms = ["i686-linux" "x86_64-linux" "i686-darwin"];
}