Restrict base package version and cabal additions
There are issues with ghc 8.2 and 8.4, see https://github.com/PostgREST/postgrest/issues/1109
This commit is contained in:
committed by
Steve Chávez
parent
dfa9055c34
commit
5e7606134a
@@ -6,6 +6,7 @@
|
||||
</a>
|
||||
[](https://gitter.im/begriffs/postgrest)
|
||||
[](http://postgrest.org)
|
||||
[](http://hackage.haskell.org/package/postgrest)
|
||||
[](https://hub.docker.com/r/postgrest/postgrest/)
|
||||
[](https://www.patreon.com/postgrest)
|
||||
|
||||
|
||||
+6
-5
@@ -7,8 +7,9 @@ synopsis: REST API for any Postgres database
|
||||
license: MIT
|
||||
license-file: LICENSE
|
||||
author: Joe Nelson, Adam Baker
|
||||
homepage: https://github.com/PostgREST/postgrest
|
||||
maintainer: cred+github@begriffs.com
|
||||
homepage: https://postgrest.org
|
||||
maintainer: Steve Chávez <stevechavezast@gmail.com>
|
||||
bug-reports: https://github.com/PostgREST/postgrest/issues
|
||||
category: Web
|
||||
build-type: Simple
|
||||
cabal-version: >=1.10
|
||||
@@ -30,7 +31,7 @@ executable postgrest
|
||||
"-with-rtsopts=-N -I2"
|
||||
default-language: Haskell2010
|
||||
build-depends: auto-update
|
||||
, base
|
||||
, base >= 4.8 && < 4.10
|
||||
, hasql
|
||||
, hasql-pool
|
||||
, postgrest
|
||||
@@ -51,7 +52,7 @@ library
|
||||
default-extensions: OverloadedStrings, QuasiQuotes, NoImplicitPrelude
|
||||
build-depends: aeson
|
||||
, ansi-wl-pprint
|
||||
, base >= 4.8 && < 6
|
||||
, base >= 4.8 && < 4.10
|
||||
, base64-bytestring
|
||||
, bytestring
|
||||
, case-insensitive
|
||||
@@ -143,7 +144,7 @@ Test-Suite spec
|
||||
, aeson-qq
|
||||
, async
|
||||
, auto-update
|
||||
, base
|
||||
, base >= 4.8 && < 4.10
|
||||
, bytestring
|
||||
, base64-bytestring
|
||||
, case-insensitive
|
||||
|
||||
Reference in New Issue
Block a user