From fccfaf862fe47270e4d6727a6e0131a5c0a91795 Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Sun, 7 Jul 2013 09:28:22 +0300 Subject: [PATCH] Do not include hashable --- 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 966a40a8..c910e309 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"]) + . filter (\xs -> not $ any (`isPrefixOf` xs) $ map return ["parsec", "text", "transformers", "mtl", "HUnit", "QuickCheck", "binary", "zlib", "stm", "regex-compat", "hashable"]) . map words . filter (not . null) . lines