From 68b4f455dadd5f999abd49b73776323ac25d14f7 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Tue, 5 Aug 2014 22:56:38 +0300 Subject: [PATCH] Don't include transformers-compat --- yesod-platform/to-cabal.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yesod-platform/to-cabal.hs b/yesod-platform/to-cabal.hs index f99a3c95..d04886cb 100644 --- a/yesod-platform/to-cabal.hs +++ b/yesod-platform/to-cabal.hs @@ -3,7 +3,7 @@ import Control.Applicative ((<$>)) main = do pkgs <- map (intercalate " == ") - . filter (\xs -> not $ any (`isPrefixOf` xs) $ map return ["parsec", "text", "transformers", "mtl", "HUnit", "QuickCheck", "binary", "zlib", "stm", "regex-compat", "hashable", "vault", "integer-gmp", "unordered-containers", "async", "aeson", "attoparsec", "scientific", "case-insensitive", "vector", "primitive", "unix-compat"]) + . filter (\xs -> not $ any (`isPrefixOf` xs) $ map return ["parsec", "text", "transformers", "mtl", "HUnit", "QuickCheck", "binary", "zlib", "stm", "regex-compat", "hashable", "vault", "integer-gmp", "unordered-containers", "async", "aeson", "attoparsec", "scientific", "case-insensitive", "vector", "primitive", "unix-compat", "transformers-compat"]) . map words . filter (not . null) . lines