packages feed

nagios-check-0.3.2: nagios-check.cabal

name:                  nagios-check
version:               0.3.2
synopsis:              Package for writing monitoring plugins
description:           Implements Nagios plugin development guidelines
                       within a Haskell framework for writing Nagios
                       checks.
homepage:              https://github.com/olorin/haskell-nagios-check
license:               MIT
license-file:          LICENSE
author:                Sharif Olorin
maintainer:            sio@tesser.org
copyright:             2014-2015 Sharif Olorin
category:              System
                     , Monitoring
                     , Metrics
build-type:            Simple
extra-source-files:    README.md,
                       CHANGELOG.md
cabal-version:         >=1.10
                       
source-repository      head
  type:                git
  location:            git@github.com:olorin/haskell-nagios-check.git

library
  exposed-modules:     System.Nagios.Plugin
  other-modules:       System.Nagios.Plugin.Check
                       System.Nagios.Plugin.PerfData
  build-depends:       base >=4.5 && <5,
                       mtl,
                       text,
                       bifunctors,
                       exceptions
  hs-source-dirs:      lib
  default-language:    Haskell2010
  ghc-options:         -Wall
                       -Wwarn
                       -fwarn-tabs

test-suite nagios-check-test
  hs-source-dirs:      tests
  main-is:             NagiosCheckTest.hs
  type:                exitcode-stdio-1.0
  default-language:    Haskell2010
  build-depends:       base >=4.5 && <5,
                       hspec,
                       QuickCheck,
                       text,
                       nagios-check