mmagorsc/taskmonad

View on GitHub
TaskMonad.cabal

Summary

Maintainability
Test Coverage
-- Initial TaskMonad.cabal generated by cabal init.  For further
-- documentation, see http://haskell.org/cabal/users-guide/

name:                TaskMonad
version:             1.0.1
synopsis:            A collection of tools which can be used to access taskwarrior from xmonad.
description:         TaskMonad is a collection of tools which can be used to access taskwarrior from xmonad.
homepage:            https://taskmonad.magorsch.de
bug-reports:         https://github.com/mmagorsc/taskmonad/issues
tested-with:         GHC ==8.6.4 || ==8.6.3 || ==8.4.4 || ==8.4.1
license:             BSD3
license-file:        LICENSE
author:              Max Magorsch
maintainer:          max@magorsch.de
-- copyright:
category:            XMonad
build-type:          Simple
extra-source-files:  README.md
                     ChangeLog.md
cabal-version:       >=1.10


source-repository head
  type:     git
  location: https://github.com/mmagorsc/taskmonad




library
  exposed-modules: TaskMonad
                   TaskMonad.GridSelect
                   TaskMonad.Prompt
                   TaskMonad.Utils
                   TaskMonad.ScratchPad
                   GridSelect.Extras
  -- other-modules:   Paths_xmonad
  build-depends:   base                  >= 4.11 && < 5
                 , X11                   >= 1.8 && < 1.10
                 , X11-xft               >= 0.2 && < 0.4
                 , mtl                   >= 2.2.2 && < 2.3
                 , random                >= 1.1 && < 1.2
                 , containers            >= 0.5.11 && < 0.6
                 , unix                  >= 2.7.2 && < 2.8
                 , process               >= 1.6.3 && < 1.7
                 , xmonad                >= 0.14.2 && <= 0.15
                 , xmonad-contrib        >= 0.14 && <= 0.15
  cpp-options: -DXFT               
  hs-source-dirs:  src
  default-language: Haskell2010