From aeebf42fe6d859927bc823be21913b155636f9a6 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Thu, 14 Jul 2011 21:54:49 +0000 Subject: [PATCH] pkgs/lib/platforms.nix: added 'haskellPlatforms', a list of all platforms on which a Haskell compiler is available svn path=/nixpkgs/trunk/; revision=27791 --- pkgs/lib/platforms.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/lib/platforms.nix b/pkgs/lib/platforms.nix index e9ed1e226e79..90ccf66f20c9 100644 --- a/pkgs/lib/platforms.nix +++ b/pkgs/lib/platforms.nix @@ -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"]; }