X-Git-Url: http://gitweb.michael.orlitzky.com/?p=mailbox-count.git;a=blobdiff_plain;f=mailbox-count.cabal;h=6b0716ed305aa0198fd220686492d4320bca6044;hp=0f14055e24b054b973bed0fd64261a5d08a79609;hb=df12e0ac36aefae2ee28a92ed06ca8b9648b54a4;hpb=d5bc9ecf871b00e1e66706040717e6b48444c05a diff --git a/mailbox-count.cabal b/mailbox-count.cabal index 0f14055..6b0716e 100644 --- a/mailbox-count.cabal +++ b/mailbox-count.cabal @@ -163,9 +163,13 @@ executable mailbox-count HDBC-postgresql >= 2.3, HDBC-sqlite3 >= 2.3, MissingH >= 1.2, - semigroups >= 0.18, tasty >= 0.8, tasty-hunit >= 0.8 + -- Data.Semigroup was added to GHC.Base in ghc-8.0 + if impl(ghc < 8.0) + -- The minor version 0.18.2 deleted the entire API? + build-depends: semigroups < 0.18.2 + main-is: Main.hs @@ -210,10 +214,12 @@ test-suite testsuite HDBC-postgresql >= 2.3, HDBC-sqlite3 >= 2.3, MissingH >= 1.2, - semigroups >= 0.18, tasty >= 0.8, tasty-hunit >= 0.8 - + -- Data.Semigroup was added to GHC.Base in ghc-8.0 + if impl(ghc < 8.0) + -- The minor version 0.18.2 deleted the entire API? + build-depends: semigroups < 0.18.2 test-suite doctests