commit 26a2a32d16a207ba0c0962ebb5f1c9015dce64f1
parent 9de791ef79b74a5c93beef10beab222e81d6831a
Author: Jared Tobin <jared@jtobin.ca>
Date:   Sat,  2 May 2015 14:44:38 +1200
Improve cabal file formatting.
Diffstat:
1 file changed, 17 insertions(+), 12 deletions(-)
diff --git a/hnuts.cabal b/hnuts.cabal
@@ -9,22 +9,27 @@ maintainer:          jared@jtobin.ca
 category:            Math
 build-type:          Simple
 extra-source-files:  README.md
-cabal-version:       >= 1.10
+cabal-version:       >= 1.18
 
 library
-  exposed-modules:     Numeric.MCMC.NUTS, 
-                       Numeric.MCMC.NUTS.Examples
+  exposed-modules:
+      Numeric.MCMC.NUTS
+    , Numeric.MCMC.NUTS.Examples
 
-  other-extensions:    ScopedTypeVariables
+  other-extensions:
+    ScopedTypeVariables
 
-  build-depends:       base >= 4.6,
-                       monad-loops >= 0.4,
-                       primitive >= 0.5, 
-                       mwc-random >= 0.12,
-                       statistics >= 0.10,
-                       ad >= 3.4 
+  build-depends:
+      base        >= 4.7
+    , monad-loops >= 0.4
+    , primitive   >= 0.5
+    , mwc-random  >= 0.12
+    , statistics  >= 0.10
+    , ad          >= 3.4
 
-  hs-source-dirs:      src
+  hs-source-dirs:
+    src
 
-  default-language:    Haskell2010
+  default-language:
+    Haskell2010