packages feed

tn-4.1.0.0: tn.cabal

name:                tn
version:             4.1.0.0
synopsis:            A simple daily journal program
description:
  tn is a simple program to keep journals.
license:             ISC
license-file:        LICENSE
author:              Peter Harpending
maintainer:          peter@harpending.org
homepage:            https://github.com/pharpend/tn
bug-reports:         https://github.com/pharpend/tn/issues
copyright:           Copyright (c) 2014-2016, Peter Harpending.
category:            Data, Text, Utility
build-type:          Simple
cabal-version:       >=1.10
extra-source-files:
  README.md
  LICENSE

library
  hs-source-dirs:      lib/
  default-language:    Haskell2010
  ghc-options:         -Wall
  default-extensions:
    DeriveGeneric
    LambdaCase
    OverloadedStrings
    TemplateHaskell
  exposed-modules:
    Tn
    Tn.Errata
    Tn.Journal
    Tn.Paths
  other-modules:
    Paths_tn
  build-depends:
      base ==4.8.*
    , aeson >=0.10.0.0
    , bytestring
    , directory >=1.2.3.0
    , file-embed
    , text
    , time
    , optparse-simple
    , pager
    , vector
    , yaml

executable tn
  hs-source-dirs:      bin/
  default-language:    Haskell2010
  ghc-options:         -Wall
  main-is:             Main.hs
  default-extensions:
    DeriveGeneric
    LambdaCase
    TemplateHaskell
  build-depends:
      base ==4.8.*
    , bytestring
    , file-embed
    , optparse-applicative
    , optparse-helper
    , tn

source-repository head
  type:                git
  location:            https://github.com/pharpend/tn.git