diff jotto/jotto.cabal @ 2:3fcf9e52cbfa

boilerplate generated with `stack new`
author Jeff Hammel <k0scist@gmail.com>
date Sun, 24 Dec 2017 12:37:27 -0800
parents
children 8ef628eff167
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/jotto/jotto.cabal	Sun Dec 24 12:37:27 2017 -0800
@@ -0,0 +1,55 @@
+-- This file has been generated from package.yaml by hpack version 0.14.1.
+--
+-- see: https://github.com/sol/hpack
+
+name:           jotto
+version:        0.1.0.0
+synopsis:       jotto word game
+description:    Play Jotto in Haskell!
+homepage:       https://github.com/k0s/wordplay#readme
+bug-reports:    https://github.com/k0s/wordplay/issues
+author:         Jeff Hammel
+maintainer:     k0scist@gmail.com
+copyright:      2017 Jeff Hammel
+license:        BSD3
+license-file:   LICENSE
+build-type:     Simple
+cabal-version:  >= 1.10
+
+extra-source-files:
+    ChangeLog.md
+    README.md
+
+source-repository head
+  type: git
+  location: https://github.com/k0s/wordplay
+
+library
+  hs-source-dirs:
+      src
+  build-depends:
+      base >= 4.7 && < 5
+  exposed-modules:
+      Lib
+  default-language: Haskell2010
+
+executable jotto-exe
+  main-is: Main.hs
+  hs-source-dirs:
+      app
+  ghc-options: -threaded -rtsopts -with-rtsopts=-N
+  build-depends:
+      base >= 4.7 && < 5
+    , jotto
+  default-language: Haskell2010
+
+test-suite jotto-test
+  type: exitcode-stdio-1.0
+  main-is: Spec.hs
+  hs-source-dirs:
+      test
+  ghc-options: -threaded -rtsopts -with-rtsopts=-N
+  build-depends:
+      base >= 4.7 && < 5
+    , jotto
+  default-language: Haskell2010