aboutsummaryrefslogtreecommitdiffhomepage
path: root/srem.cabal
blob: 4a882336f4a96d2b1ba472350ba5127b7e0ab2f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
name:                srem
version:             2.0.0
synopsis:            Timed reminders as notifications
homepage:            https://github.com/spwhitton/srem.git
license:             GPL-3
license-file:        LICENSE
author:              Sean Whitton
maintainer:          spwhitton@spwhitton.name
category:            Text
build-type:          Simple
cabal-version:       >=1.10

executable srem
  main-is:             Main.hs
  build-depends:       base
                     , directory
                     , process
                     , regex-posix
                     , modular-arithmetic
                     , time
                     , filepath
                     , split
                     , old-locale
                     , tuple
  if ! os(windows)
    build-depends:     fdo-notify
                     , dbus
  hs-source-dirs:      src
  default-language:    Haskell2010