Skip to content

Commit

Permalink
Merge pull request #11 from gwils/clean-cabal
Browse files Browse the repository at this point in the history
Fix build on GHC 7.10, don't try to build on GHC 7.8, fix cabal warnings
  • Loading branch information
PaulJohnson authored Jun 22, 2018
2 parents f3d6380 + f89cca4 commit 8656851
Showing 1 changed file with 4 additions and 13 deletions.
17 changes: 4 additions & 13 deletions geodetics.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,11 @@ source-repository head
library
hs-source-dirs: src
build-depends:
base >= 4.6 && < 5,
base >= 4.7 && < 5,
dimensional >= 1.0,
array >= 0.4
if !impl(ghc>=8.0)
build-depends: semigroups >= 0.9 && < 0.19
ghc-options: -Wall
exposed-modules:
Geodetics.Altitude,
Expand Down Expand Up @@ -61,19 +63,8 @@ test-suite GeodeticTest
array >= 0.4,
checkers
hs-source-dirs:
src,
test
ghc-options: -Wall -rtsopts
other-modules:
ArbitraryInstances,
Main,
Geodetics.Altitude,
Geodetics.Ellipsoids
Geodetics.Geodetic,
Geodetics.Grid,
Geodetics.LatLongParser,
Geodetics.Path,
Geodetics.Stereographic,
Geodetics.TransverseMercator,
Geodetics.UK
ArbitraryInstances
Default-Language: Haskell2010

0 comments on commit 8656851

Please sign in to comment.