packages feed

sentry-0.1.0: sentry.cabal

name:                sentry
version:             0.1.0
Cabal-Version:       >= 1.8
synopsis:            Process monitoring tool written and configured in Haskell
description:
  Sentry is a process monitoring tool written and configured in Haskell. Its
  aim is to keep running programs. For each configured program, multiple
  processes can be started. Currently Sentry runs on Linux only.
  .
  Under normal circumstance, the "Sentry" module is enough to write
  configuration files.
category:            Network
license:             BSD3
license-file:        LICENSE
author:              Vo Minh Thu
maintainer:          noteed@gmail.com
homepage:            https://github.com/noteed/sentry
bug-reports:         https://github.com/noteed/sentry/issues
build-type:          Simple

source-repository head
  type: git
  location: https://github.com/noteed/sentry

library
  build-depends:       base == 4.*,
                       ansi-terminal == 0.5.*,
                       bytestring == 0.9.*,
                       cereal == 0.3.*,
                       cmdargs == 0.9.*,
                       directory == 1.1.*,
                       filepath == 1.2.*,
                       old-locale == 1.0.*,
                       old-time == 1.0.*,
                       process == 1.1.*,
                       safecopy == 0.6.*,
                       time == 1.1.*,
                       unix == 2.4.*
  exposed-modules:     Sentry,
                       Sentry.Command,
                       Sentry.Core,
                       Sentry.Types
  ghc-options:         -Wall

executable sentry
  hs-source-dirs:      bin
  main-is:             sentry.hs
  build-depends:       base == 4.*,
                       directory == 1.1.*,
                       filepath == 1.2.*,
                       sentry,
                       unix == 2.4.*
  ghc-options:         -Wall
                       -threaded

executable sentry-sleep
  hs-source-dirs:      bin
  main-is:             sentry-sleep.hs
  build-depends:       base == 4.*
  ghc-options:         -Wall
                       -threaded
  buildable: True