packages feed

readme-lhs-0.2.2: readme-lhs.cabal

cabal-version: 1.12
name:           readme-lhs
version:        0.2.2
synopsis:       See readme.md
description:    See readme.md for description.
category:       Development
homepage:       https://github.com/tonyday567/readme-lhs#readme
bug-reports:    https://github.com/tonyday567/readme-lhs/issues
author:         Tony Day
maintainer:     tonyday567@gmail.com
copyright:      2016 Tony Day
license:        BSD3
license-file:   LICENSE
build-type:     Simple
extra-source-files:
    readme.md
    other/readme-lhs.hsfiles

source-repository head
  type: git
  location: https://github.com/tonyday567/readme-lhs

library
  hs-source-dirs:
    src
  default-extensions:
    NegativeLiterals
    OverloadedStrings
    UnicodeSyntax
  ghc-options:
    -Wall
    -Wcompat
    -Wincomplete-record-updates
    -Wincomplete-uni-patterns
    -Wredundant-constraints
  build-depends:
    base >=4.7 && <5
    , protolude
    , text
    , pandoc
    , pandoc-types
    , containers
  exposed-modules:
    Readme.Lhs
  other-modules:
  default-language: Haskell2010

executable readme-lhs-example
  main-is: example.lhs
  other-modules:
      Paths_readme_lhs
  hs-source-dirs:
      ./
  default-extensions: NoImplicitPrelude UnicodeSyntax NegativeLiterals OverloadedStrings
  ghc-options: -funbox-strict-fields -fforce-recomp -threaded -rtsopts -with-rtsopts=-N
  build-depends:
      base >=4.7 && <5
    , protolude
    , readme-lhs
  default-language: Haskell2010

test-suite test
  type: exitcode-stdio-1.0
  main-is: test.hs
  other-modules:
      Paths_readme_lhs
  hs-source-dirs:
      test
  default-extensions: NoImplicitPrelude UnicodeSyntax NegativeLiterals OverloadedStrings
  build-depends:
      base >=4.7 && <5
    , doctest
    , protolude
    , readme-lhs
  default-language: Haskell2010