view jotto/jotto.cabal @ 5:7580e7827e1e

add build instructions
author Jeff Hammel <k0scist@gmail.com>
date Sun, 24 Dec 2017 13:04:43 -0800
parents 3fcf9e52cbfa
children 8ef628eff167
line wrap: on
line source

-- 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