From f9d7cb6fc1533561c358cac46faa2c8e8b88b923 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Wed, 15 Oct 2014 08:17:58 +0200 Subject: [PATCH] haskell-nixpkgs.nix: enable i686 test builds for 'vector' to debug https://github.com/haskell/vector/issues/47 --- haskell-nixpkgs.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/haskell-nixpkgs.nix b/haskell-nixpkgs.nix index 52f6cd4..7801ad1 100644 --- a/haskell-nixpkgs.nix +++ b/haskell-nixpkgs.nix @@ -44,6 +44,7 @@ linux.mapTestOn { # Build GHC in 32-bit, too, because hydra.nixos.org cannot do that for # reasons nobody understands. #haskellPackages.ghcPlain = [ "i686-linux" "x86_64-linux" ]; + haskellPackages.vector = [ "i686-linux" ]; } //