# HG changeset patch # User Jeff Hammel # Date 1514846979 28800 # Node ID 8ef628eff167f8218879e8298bdb91ef682ea3ce # Parent cc74dcd1548bd20bc7b5d55ccead68e3b6b60aa4 note stack init step diff -r cc74dcd1548b -r 8ef628eff167 jotto/README.md --- a/jotto/README.md Sun Dec 24 13:27:57 2017 -0800 +++ b/jotto/README.md Mon Jan 01 14:49:39 2018 -0800 @@ -10,4 +10,6 @@ To build: ``` stack build -``` \ No newline at end of file +``` + +You will have to run `stack init` first. diff -r cc74dcd1548b -r 8ef628eff167 jotto/jotto.cabal --- a/jotto/jotto.cabal Sun Dec 24 13:27:57 2017 -0800 +++ b/jotto/jotto.cabal Mon Jan 01 14:49:39 2018 -0800 @@ -1,11 +1,13 @@ --- This file has been generated from package.yaml by hpack version 0.14.1. +-- This file has been generated from package.yaml by hpack version 0.20.0. -- -- see: https://github.com/sol/hpack +-- +-- hash: 83655f224e23565878a0b2218d8c0cc0a90f1848957569d80031d03e53f99dc3 name: jotto version: 0.1.0.0 -synopsis: jotto word game -description: Play Jotto in Haskell! +synopsis: Short description of your package +description: Please see the README on Github at homepage: https://github.com/k0s/wordplay#readme bug-reports: https://github.com/k0s/wordplay/issues author: Jeff Hammel @@ -28,9 +30,11 @@ hs-source-dirs: src build-depends: - base >= 4.7 && < 5 + base >=4.7 && <5 exposed-modules: Lib + other-modules: + Paths_jotto default-language: Haskell2010 executable jotto-exe @@ -39,8 +43,10 @@ app ghc-options: -threaded -rtsopts -with-rtsopts=-N build-depends: - base >= 4.7 && < 5 + base >=4.7 && <5 , jotto + other-modules: + Paths_jotto default-language: Haskell2010 test-suite jotto-test @@ -50,6 +56,8 @@ test ghc-options: -threaded -rtsopts -with-rtsopts=-N build-depends: - base >= 4.7 && < 5 + base >=4.7 && <5 , jotto + other-modules: + Paths_jotto default-language: Haskell2010